diff options
Diffstat (limited to 'source3/include/rpc_creds.h')
-rw-r--r-- | source3/include/rpc_creds.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/include/rpc_creds.h b/source3/include/rpc_creds.h index 54293a67d0..c389c64d1d 100644 --- a/source3/include/rpc_creds.h +++ b/source3/include/rpc_creds.h @@ -36,6 +36,9 @@ typedef struct ntuser_creds typedef struct unixuser_creds { fstring user_name; + fstring requested_name; + fstring real_name; + BOOL guest; } CREDS_UNIX; @@ -51,7 +54,8 @@ typedef struct unixsec_creds typedef struct ntsec_creds { DOM_SID sid; - SEC_DESC_BUF sd ; + uint32 num_grps; + uint32 *grp_rids; } CREDS_NT_SEC; |