summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_net.c
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/rpc_parse/parse_net.c
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/rpc_parse/parse_net.c')
-rw-r--r--source3/rpc_parse/parse_net.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c
index b74fb7ab0d..79b49855a9 100644
--- a/source3/rpc_parse/parse_net.c
+++ b/source3/rpc_parse/parse_net.c
@@ -1338,15 +1338,11 @@ static void net_io_sam_passwd_info(char *desc, SAM_PWD *pwd,
smb_io_unihdr ("hdr_lm_pwd", &(pwd->hdr_lm_pwd), ps, depth);
prs_uint8s(False, "buf_lm_pwd", ps, depth, pwd->buf_lm_pwd, 16);
- prs_uint32("ptr_1 ", ps, depth, &(pwd->ptr_1 ));
-
smb_io_unihdr ("hdr_nt_pwd", &(pwd->hdr_nt_pwd), ps, depth);
prs_uint8s(False, "buf_nt_pwd", ps, depth, pwd->buf_nt_pwd, 16);
-
- prs_uint32("ptr_2 ", ps, depth, &(pwd->ptr_2 ));
- prs_uint32("ptr_3 ", ps, depth, &(pwd->ptr_3 ));
- prs_uint32("ptr_4 ", ps, depth, &(pwd->ptr_4 ));
- prs_uint32("ptr_5 ", ps, depth, &(pwd->ptr_5 ));
+
+ smb_io_unihdr("", &(pwd->hdr_empty_lm), ps, depth);
+ smb_io_unihdr("", &(pwd->hdr_empty_nt), ps, depth);
}
/*******************************************************************