diff options
author | Tim Potter <tpot@samba.org> | 2002-06-03 02:13:46 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-03 02:13:46 +0000 |
commit | ee2ef50a74e0ff5d51c559307bd2c0ac3f7e3f7b (patch) | |
tree | 128853a865f50089c6ed330bdb0379680580af45 | |
parent | 3940a2fec8433ed3b13d93985c8c718ba8f3b3fc (diff) | |
download | samba-ee2ef50a74e0ff5d51c559307bd2c0ac3f7e3f7b.tar.gz samba-ee2ef50a74e0ff5d51c559307bd2c0ac3f7e3f7b.tar.bz2 samba-ee2ef50a74e0ff5d51c559307bd2c0ac3f7e3f7b.zip |
Fixed bogus alignment in unmarshalling of SAMR_GET_DOM_PWINFO reply.
(This used to be commit 2e25b5c3099e48869e83a1e03943d3cc2a875f24)
-rw-r--r-- | source3/rpc_parse/parse_samr.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/rpc_parse/parse_samr.c b/source3/rpc_parse/parse_samr.c index 66312db52e..412dcd6501 100644 --- a/source3/rpc_parse/parse_samr.c +++ b/source3/rpc_parse/parse_samr.c @@ -6721,12 +6721,8 @@ BOOL samr_io_r_get_dom_pwinfo(char *desc, SAMR_R_GET_DOM_PWINFO * r_u, if(!prs_uint16("unk_0", ps, depth, &r_u->unk_0)) return False; - if(!prs_align(ps)) - return False; if(!prs_uint16("unk_1", ps, depth, &r_u->unk_1)) return False; - if(!prs_align(ps)) - return False; if(!prs_uint16("unk_2", ps, depth, &r_u->unk_2)) return False; if(!prs_align(ps)) |