diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-02 01:13:02 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-02 01:13:02 +0000 |
commit | 51534a4b97f09fc0f98d00e7a2730dddde496dd8 (patch) | |
tree | 1ac57a51befb8b87d3c2add8ba6774fed3736fdb /source3/rpc_parse/parse_misc.c | |
parent | f7682385826a9ed2f463d794e0c91ba53ddd6a9e (diff) | |
download | samba-51534a4b97f09fc0f98d00e7a2730dddde496dd8.tar.gz samba-51534a4b97f09fc0f98d00e7a2730dddde496dd8.tar.bz2 samba-51534a4b97f09fc0f98d00e7a2730dddde496dd8.zip |
adding group member code, made a start. found that the group members'
rid is needed not the name (see DOMAIN_GRP_MEMBER) decided to go home.
(This used to be commit 9337049dfc98becfa74522d418dae64a97c7a304)
Diffstat (limited to 'source3/rpc_parse/parse_misc.c')
-rw-r--r-- | source3/rpc_parse/parse_misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c index e9423b3a51..6c42070de4 100644 --- a/source3/rpc_parse/parse_misc.c +++ b/source3/rpc_parse/parse_misc.c @@ -651,6 +651,7 @@ void make_dom_rid3(DOM_RID3 *rid3, uint32 rid, uint8 type) rid3->type1 = type; rid3->ptr_type = 0x1; /* non-zero, basically. */ rid3->type2 = 0x1; + rid3->unk = type; } /******************************************************************* @@ -669,6 +670,7 @@ void smb_io_dom_rid3(char *desc, DOM_RID3 *rid3, prs_struct *ps, int depth) prs_uint32("type1 ", ps, depth, &(rid3->type1 )); prs_uint32("ptr_type", ps, depth, &(rid3->ptr_type)); prs_uint32("type2 ", ps, depth, &(rid3->type2 )); + prs_uint32("unk ", ps, depth, &(rid3->unk )); } /******************************************************************* @@ -681,7 +683,6 @@ void make_dom_rid4(DOM_RID4 *rid4, uint16 unknown, uint16 attr, uint32 rid) rid4->rid = rid; } - /******************************************************************* makes a DOM_CLNT_SRV structure. ********************************************************************/ |