From 5045bdc2a4a4c4844857cfc393a5b3b6fac28f1a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 29 Jan 2005 04:02:13 +0000 Subject: r5090: Fix up the IDL for LogonGetDomainInfo in NETLOGON. Andrew Bartlett (This used to be commit e5afc3609382a7b534c9d845e809d135a0d4eb3a) --- source4/torture/rpc/netlogon.c | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'source4/torture/rpc/netlogon.c') 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); -- cgit