diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-12-31 07:53:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:50 -0500 |
commit | fc26c0c077078fdb158b104e011265533732c81e (patch) | |
tree | 5d637ae4068ecfaedc187a3413b81978445d3503 /source4 | |
parent | 6c8df6db8fabd709498d6b90ff27e9f92404a91a (diff) | |
download | samba-fc26c0c077078fdb158b104e011265533732c81e.tar.gz samba-fc26c0c077078fdb158b104e011265533732c81e.tar.bz2 samba-fc26c0c077078fdb158b104e011265533732c81e.zip |
r4443: test lsa_LookupNames3() even when lsa_LookupSids3() fails
(This used to be commit d37f556258ba12479e4e9acc5cdb5535ebf41d7f)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/lsa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index 3fba1bf4b0..5e0d75f7b5 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -309,6 +309,10 @@ static BOOL test_LookupSids2(struct dcerpc_pipe *p, return False; } + if (!test_LookupNames3(p, mem_ctx, handle, &names)) { + return False; + } + return True; } |