From 18b0a52b89457187f14e8003c72da56e6e661988 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Mon, 23 Aug 2010 16:14:58 +0200 Subject: Fix RPC-LSA-TRUSTED-DOMAINS for changed IDL --- source4/torture/rpc/lsa.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'source4/torture/rpc') diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index c66725672e..5d4f597fcb 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -2436,7 +2436,17 @@ static bool test_CreateTrustedDomainEx2(struct dcerpc_pipe *p, generate_random_buffer(auth_struct.confounder, sizeof(auth_struct.confounder)); auth_struct.outgoing.count = 0; + auth_struct.outgoing.current.count = 0; + auth_struct.outgoing.current.array = NULL; + auth_struct.outgoing.previous.count = 0; + auth_struct.outgoing.previous.array = NULL; + auth_struct.incoming.count = 0; + auth_struct.incoming.current.count = 0; + auth_struct.incoming.current.array = NULL; + auth_struct.incoming.previous.count = 0; + auth_struct.incoming.previous.array = NULL; + ndr_err = ndr_push_struct_blob(&auth_blob, tctx, &auth_struct, (ndr_push_flags_fn_t)ndr_push_trustDomainPasswords); -- cgit