From 6ee381d86c4a1118f14e8459999101512b6b3005 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 26 Apr 2004 02:04:48 +0000 Subject: r362: after setting domain info query it again so we can see what attributes stick (This used to be commit b2ebaf95b75b050ad02ca967867337cd81faa859) --- source4/torture/rpc/samr.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source4') 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; -- cgit