1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-21 12:23:50 +03:00

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.
This commit is contained in:
Jeremy Allison
2006-03-02 23:32:44 +00:00
committed by Gerald (Jerry) Carter
parent 13de4d000e
commit 305a774d28
2 changed files with 5 additions and 5 deletions

View File

@@ -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;