diff options
author | Günther Deschner <gd@samba.org> | 2008-10-21 13:03:49 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-27 19:33:23 +0100 |
commit | 8e622f57e705e92095d0f1079618366fd82f80f8 (patch) | |
tree | 940a1e32086f72808fc67d2104c1d63aa0c9b0a6 /source4/torture | |
parent | ea886864190e7d3bb9f58260ec854489c4642c86 (diff) | |
download | samba-8e622f57e705e92095d0f1079618366fd82f80f8.tar.gz samba-8e622f57e705e92095d0f1079618366fd82f80f8.tar.bz2 samba-8e622f57e705e92095d0f1079618366fd82f80f8.zip |
s4-lsa: merge lsa_QueryDomainInformationPolicy from s3 lsa idl.
Guenther
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/lsa.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index 56faab0476..a5f7f73959 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -2294,6 +2294,7 @@ static bool test_QueryDomainInfoPolicy(struct dcerpc_pipe *p, struct policy_handle *handle) { struct lsa_QueryDomainInformationPolicy r; + union lsa_DomainInformationPolicy *info = NULL; NTSTATUS status; int i; bool ret = true; @@ -2303,6 +2304,7 @@ static bool test_QueryDomainInfoPolicy(struct dcerpc_pipe *p, for (i=2;i<4;i++) { r.in.handle = handle; r.in.level = i; + r.out.info = &info; printf("\nTrying QueryDomainInformationPolicy level %d\n", i); |