summaryrefslogtreecommitdiff
path: root/source3/include/rpc_netlogon.h
diff options
context:
space:
mode:
authorMatthew Chapman <matty@samba.org>1999-07-22 10:55:09 +0000
committerMatthew Chapman <matty@samba.org>1999-07-22 10:55:09 +0000
commit61b92043da228b911010c07279f98833d4ca31ef (patch)
tree112e65566a56ec0d07c683c1fd91234ca31242a8 /source3/include/rpc_netlogon.h
parent30beb2dd109e26abbe4d773671909b1fdf3a0e62 (diff)
downloadsamba-61b92043da228b911010c07279f98833d4ca31ef.tar.gz
samba-61b92043da228b911010c07279f98833d4ca31ef.tar.bz2
samba-61b92043da228b911010c07279f98833d4ca31ef.zip
BDC support.
Fixing and clarifying SAM_PWD structure. (This used to be commit 8e36b07a0e8e7ea8b72e1b9e3b747795b2685e85)
Diffstat (limited to 'source3/include/rpc_netlogon.h')
-rw-r--r--source3/include/rpc_netlogon.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/source3/include/rpc_netlogon.h b/source3/include/rpc_netlogon.h
index 6e28280dcc..e8ea7a4dcb 100644
--- a/source3/include/rpc_netlogon.h
+++ b/source3/include/rpc_netlogon.h
@@ -450,20 +450,18 @@ typedef struct sam_group_info_info
/* SAM_PWD */
typedef struct sam_passwd_info
{
+ /* this structure probably contains password history */
+ /* this is probably a count of lm/nt pairs */
uint32 unk_0; /* 0x0000 0002 */
UNIHDR hdr_lm_pwd;
uint8 buf_lm_pwd[16];
- uint32 ptr_1;
-
UNIHDR hdr_nt_pwd;
uint8 buf_nt_pwd[16];
- uint32 ptr_2;
- uint32 ptr_3;
- uint32 ptr_4;
- uint32 ptr_5;
+ UNIHDR hdr_empty_lm;
+ UNIHDR hdr_empty_nt;
} SAM_PWD;