From f3a4d837117047b1e708945d61bf4bcf7762f8a5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 20 Nov 2003 07:20:59 +0000 Subject: started on samr_SetUserInfo() cope with the 'samrtorturetest' user already existing in the samr test (to cope with previously failed runs) (This used to be commit 47128b3d50b3481175a8b2580624316a4f7677db) --- source4/librpc/idl/samr.idl | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'source4/librpc/idl') diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index 8092e64d5b..219745513c 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -499,7 +499,7 @@ samr_Name home_drive; samr_Name logon_script; samr_Name profile; - samr_Name descriptiom; + samr_Name description; samr_Name workstations; NTTIME last_logon; NTTIME last_logoff; @@ -543,7 +543,7 @@ } samr_UserInfo12; typedef struct { - samr_Name descriptiom; + samr_Name description; } samr_UserInfo13; typedef struct { @@ -627,9 +627,14 @@ [out,switch_is(level)] samr_UserInfo *info ); + /************************/ /* Function 0x25 */ - NTSTATUS samr_SET_USERINFO(); + NTSTATUS samr_SetUserInfo( + [in,ref] policy_handle *handle, + [in] uint16 level, + [in,ref,switch_is(level)] samr_UserInfo *info + ); /************************/ /* Function 0x26 */ -- cgit