diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-17 16:46:56 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-17 16:46:56 +0000 |
commit | 9e4626593f59ba4f5a678fc6d8d6e239cdff9c39 (patch) | |
tree | 9ebe99e504f44523bd7ce7480880a3ed69bfdc49 /source3/include | |
parent | f3c37f925ee06bbc76a89035b28dae0cf8c38088 (diff) | |
download | samba-9e4626593f59ba4f5a678fc6d8d6e239cdff9c39.tar.gz samba-9e4626593f59ba4f5a678fc6d8d6e239cdff9c39.tar.bz2 samba-9e4626593f59ba4f5a678fc6d8d6e239cdff9c39.zip |
pipenetlog.c lsaparse.c smb.h :
SAM logon sorting. too many buffer pointers. added in the missing
switch value (value of 3). dealing with the buffer pointers to the
user info structure in a slightly different way.
(This used to be commit 7993e17c9a1edddae6407d3f12790c461def705a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 80b2f28f4a..11ec6940a6 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -741,7 +741,7 @@ typedef struct lsa_r_srv_pwset_info /* LSA_USER_INFO */ typedef struct lsa_q_user_info { - uint32 undoc_buffer; + uint32 ptr_user_info; NTTIME logon_time; /* logon time */ NTTIME logoff_time; /* logoff time */ @@ -809,7 +809,7 @@ typedef struct lsa_r_sam_logon_info uint32 buffer_creds; /* undocumented buffer pointer */ DOM_CRED srv_creds; /* server credentials. server time stamp appears to be ignored. */ - uint32 buffer_user; + uint16 switch_value; /* 3 - indicates type of USER INFO */ LSA_USER_INFO *user; uint32 auth_resp; /* 1 - Authoritative response; 0 - Non-Auth? */ |