diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-20 07:20:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-20 07:20:59 +0000 |
commit | f3a4d837117047b1e708945d61bf4bcf7762f8a5 (patch) | |
tree | 87cfd02d316cf8486ff822403f029ad65ea503ab /source4/librpc/idl/samr.idl | |
parent | e2254cc18f41b0da449abd389b682fc9fcb8da6b (diff) | |
download | samba-f3a4d837117047b1e708945d61bf4bcf7762f8a5.tar.gz samba-f3a4d837117047b1e708945d61bf4bcf7762f8a5.tar.bz2 samba-f3a4d837117047b1e708945d61bf4bcf7762f8a5.zip |
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)
Diffstat (limited to 'source4/librpc/idl/samr.idl')
-rw-r--r-- | source4/librpc/idl/samr.idl | 11 |
1 files changed, 8 insertions, 3 deletions
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 */ |