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 | 9337049dfc98becfa74522d418dae64a97c7a304 (patch) | |
tree | 6dce5274734513999785206bb738c142596186f7 /source/rpc_parse/parse_misc.c | |
parent | 585d47644d3d709ccdfd5135c5f77166b609eb3b (diff) | |
download | samba-9337049dfc98becfa74522d418dae64a97c7a304.tar.gz samba-9337049dfc98becfa74522d418dae64a97c7a304.tar.xz samba-9337049dfc98becfa74522d418dae64a97c7a304.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.
Diffstat (limited to 'source/rpc_parse/parse_misc.c')
-rw-r--r-- | source/rpc_parse/parse_misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/rpc_parse/parse_misc.c b/source/rpc_parse/parse_misc.c index e9423b3a512..6c42070de4d 100644 --- a/source/rpc_parse/parse_misc.c +++ b/source/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. ********************************************************************/ |