diff options
author | Alexander Bokovoy <ab@samba.org> | 2006-01-14 12:37:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:08 -0500 |
commit | a02415bf363e3c1b6863b135bdae3b2e2708db3b (patch) | |
tree | d49ef69be6c2179d11f93fe47bb02cba30fd6670 /source3/include | |
parent | ae4a576f680f1c0507ec73f606154ff8ff36a1dd (diff) | |
download | samba-a02415bf363e3c1b6863b135bdae3b2e2708db3b.tar.gz samba-a02415bf363e3c1b6863b135bdae3b2e2708db3b.tar.bz2 samba-a02415bf363e3c1b6863b135bdae3b2e2708db3b.zip |
r12935: After discussion with Volker fix bug #3397 using a variant of the patch by Alex Deiter (tiamat@komi.mts.ru).
Introduces level 9 of getuserinfo and allows to successfully install MS SMS2003
on a member of a Samba domain. Also added support for this level in rpcclient.
The code for infolevel 9 is modelled upon Samba-TNG by Alex Deiter.
Jerry, we need this in 3.0.21b.
(This used to be commit 93461646ce2ad6e2f8b11d40ce98722d56a83b43)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_samr.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/rpc_samr.h b/source3/include/rpc_samr.h index 5555aaef0e..342db37ea5 100644 --- a/source3/include/rpc_samr.h +++ b/source3/include/rpc_samr.h @@ -408,6 +408,7 @@ typedef struct sam_user_info_16 } SAM_USER_INFO_16; + /* SAM_USER_INFO_7 */ typedef struct sam_user_info_7 { @@ -417,6 +418,13 @@ typedef struct sam_user_info_7 } SAM_USER_INFO_7; +/* SAM_USER_INFO_9 */ +typedef struct sam_user_info_9 +{ + uint32 rid_group; /* Primary Group RID */ +} SAM_USER_INFO_9; + + /* SAMR_Q_CLOSE_HND - probably a policy handle close */ typedef struct q_samr_close_hnd_info { @@ -1255,6 +1263,7 @@ typedef struct sam_userinfo_ctr_info union { SAM_USER_INFO_7 *id7; + SAM_USER_INFO_9 *id9; SAM_USER_INFO_16 *id16; SAM_USER_INFO_17 *id17; SAM_USER_INFO_18 *id18; |