diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-26 02:04:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:35 -0500 |
commit | 6ee381d86c4a1118f14e8459999101512b6b3005 (patch) | |
tree | f63c1aa40c5a5349c36b6605ebaec89cbce3df0b /source4 | |
parent | 2733f8cf7cbdf5282837c91d4175293ff9a7ddcd (diff) | |
download | samba-6ee381d86c4a1118f14e8459999101512b6b3005.tar.gz samba-6ee381d86c4a1118f14e8459999101512b6b3005.tar.bz2 samba-6ee381d86c4a1118f14e8459999101512b6b3005.zip |
r362: after setting domain info query it again so we can see what attributes stick
(This used to be commit b2ebaf95b75b050ad02ca967867337cd81faa859)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/samr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 3e8ff53771..1e5cfb561a 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -1984,6 +1984,14 @@ static BOOL test_QueryDomainInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, continue; } } + + status = dcerpc_samr_QueryDomainInfo(p, mem_ctx, &r); + if (!NT_STATUS_IS_OK(status)) { + printf("QueryDomainInfo level %u failed - %s\n", + r.in.level, nt_errstr(status)); + ret = False; + continue; + } } return True; |