diff options
author | Sumit Bose <sbose@redhat.com> | 2010-08-23 16:14:58 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-08-25 13:27:50 +0200 |
commit | 18b0a52b89457187f14e8003c72da56e6e661988 (patch) | |
tree | 97fb5541959a91bdc5e76225da779920c6e66b70 | |
parent | e2f15d2a25302ee529006b2d1d6b99993c7102e8 (diff) | |
download | samba-18b0a52b89457187f14e8003c72da56e6e661988.tar.gz samba-18b0a52b89457187f14e8003c72da56e6e661988.tar.bz2 samba-18b0a52b89457187f14e8003c72da56e6e661988.zip |
Fix RPC-LSA-TRUSTED-DOMAINS for changed IDL
-rw-r--r-- | source4/torture/rpc/lsa.c | 10 |
1 files changed, 10 insertions, 0 deletions
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); |