diff options
author | Tim Potter <tpot@samba.org> | 2003-05-27 00:30:29 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-05-27 00:30:29 +0000 |
commit | 0842573b513c7b1788fe0f83f06256515227a1f9 (patch) | |
tree | 7c76381a30cdbf8137b678b34dc9be9ae02397ce /source3 | |
parent | 0e9422f139e21af2025dbe33883fdd0ed517df4d (diff) | |
download | samba-0842573b513c7b1788fe0f83f06256515227a1f9.tar.gz samba-0842573b513c7b1788fe0f83f06256515227a1f9.tar.bz2 samba-0842573b513c7b1788fe0f83f06256515227a1f9.zip |
Merge of secchan fix from 3.0 that was eaten by CVS yesterday. I think
it was becuase I ran out of disk quota.
(This used to be commit 10cbec05a7bfe2fab54940329c5b348d5e524f29)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_parse/parse_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c index 259ca7fdc1..1a14915c9f 100644 --- a/source3/rpc_parse/parse_net.c +++ b/source3/rpc_parse/parse_net.c @@ -2129,7 +2129,7 @@ static BOOL net_io_sam_account_info(const char *desc, uint8 sess_key[16], if (!prs_uint32("pwd_len", ps, depth, &len)) return False; old_offset = prs_offset(ps); - if (len == 0x44) + if (len > 0) { if (ps->io) { |