summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-03-02 23:32:44 +0000
committerJeremy Allison <jra@samba.org>2006-03-02 23:32:44 +0000
commit2a4978ffbdfc49aa0dd6bf4955a8d42a256a7a08 (patch)
treed6e6ff11ee5c8279ef3cff97fee622bc7385b97f
parenteeefa4e055dc55a8bb55a35b085382f019f46add (diff)
downloadsamba-2a4978ffbdfc49aa0dd6bf4955a8d42a256a7a08.tar.gz
samba-2a4978ffbdfc49aa0dd6bf4955a8d42a256a7a08.tar.xz
samba-2a4978ffbdfc49aa0dd6bf4955a8d42a256a7a08.zip
r13802: I *knew* ASU on sparc had to be good for *something* ! :-).
Fix incorrect size understanding of sid name type (yes it's already correct in the Samba4 IDL :-). Jeremy.
-rw-r--r--source/include/rpc_misc.h4
-rw-r--r--source/rpc_parse/parse_misc.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/source/include/rpc_misc.h b/source/include/rpc_misc.h
index bad2089ac7b..661d436859a 100644
--- a/source/include/rpc_misc.h
+++ b/source/include/rpc_misc.h
@@ -266,14 +266,14 @@ typedef struct {
/* DOM_RID - domain RID structure for ntlsa pipe */
typedef struct {
- uint8 type; /* value is SID_NAME_USE enum */
+ uint16 type; /* value is SID_NAME_USE enum */
uint32 rid;
uint32 rid_idx; /* referenced domain index */
} DOM_RID;
/* DOM_RID2 - second domain RID structure for ntlsa pipe */
typedef struct {
- uint8 type; /* value is SID_NAME_USE enum */
+ uint16 type; /* value is SID_NAME_USE enum */
uint32 rid;
uint32 rid_idx; /* referenced domain index */
uint32 unknown;
diff --git a/source/rpc_parse/parse_misc.c b/source/rpc_parse/parse_misc.c
index 5973deefd05..f030e266df5 100644
--- a/source/rpc_parse/parse_misc.c
+++ b/source/rpc_parse/parse_misc.c
@@ -1254,7 +1254,7 @@ BOOL smb_io_account_lockout_str(const char *desc, LOCKOUT_STRING *account_lockou
Inits a DOM_RID structure.
********************************************************************/
-void init_dom_rid(DOM_RID *prid, uint32 rid, uint8 type, uint32 idx)
+void init_dom_rid(DOM_RID *prid, uint32 rid, uint16 type, uint32 idx)
{
prid->type = type;
prid->rid = rid;
@@ -1276,7 +1276,7 @@ BOOL smb_io_dom_rid(const char *desc, DOM_RID *rid, prs_struct *ps, int depth)
if(!prs_align(ps))
return False;
- if(!prs_uint8("type ", ps, depth, &rid->type))
+ if(!prs_uint16("type ", ps, depth, &rid->type))
return False;
if(!prs_align(ps))
return False;
@@ -1303,7 +1303,7 @@ BOOL smb_io_dom_rid2(const char *desc, DOM_RID2 *rid, prs_struct *ps, int depth)
if(!prs_align(ps))
return False;
- if(!prs_uint8("type ", ps, depth, &rid->type))
+ if(!prs_uint16("type ", ps, depth, &rid->type))
return False;
if(!prs_align(ps))
return False;