diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-01-29 04:02:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:21 -0500 |
commit | 5045bdc2a4a4c4844857cfc393a5b3b6fac28f1a (patch) | |
tree | 4178f303cecf4b8b1cd0424841cf4bd7190530df /source4/torture | |
parent | 89d6c45d7c32cd763ab950ec2f7517674b6e17f9 (diff) | |
download | samba-5045bdc2a4a4c4844857cfc393a5b3b6fac28f1a.tar.gz samba-5045bdc2a4a4c4844857cfc393a5b3b6fac28f1a.tar.bz2 samba-5045bdc2a4a4c4844857cfc393a5b3b6fac28f1a.zip |
r5090: Fix up the IDL for LogonGetDomainInfo in NETLOGON.
Andrew Bartlett
(This used to be commit e5afc3609382a7b534c9d845e809d135a0d4eb3a)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/netlogon.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index 0d7acd2875..34ce26801f 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -1094,13 +1094,10 @@ static BOOL test_GetDomainInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) r.in.server_name = talloc_asprintf(mem_ctx, "\\\\%s", dcerpc_server_name(p)); r.in.computer_name = TEST_MACHINE_NAME; - r.in.unknown1 = 512; r.in.level = 1; r.in.credential = &a; - r.out.credential = &a; - - r.in.i1[0] = 0; - r.in.i1[1] = 0; + r.in.return_authenticator = &a; + r.out.return_authenticator = &a; r.in.query.query1 = &q1; ZERO_STRUCT(q1); @@ -1164,13 +1161,10 @@ static BOOL test_GetDomainInfo_async(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) ZERO_STRUCT(r); r.in.server_name = talloc_asprintf(mem_ctx, "\\\\%s", dcerpc_server_name(p)); r.in.computer_name = TEST_MACHINE_NAME; - r.in.unknown1 = 512; r.in.level = 1; r.in.credential = &a; - r.out.credential = &a; - - r.in.i1[0] = 0; - r.in.i1[1] = 0; + r.in.return_authenticator = &a; + r.out.return_authenticator = &a; r.in.query.query1 = &q1; ZERO_STRUCT(q1); |