diff options
author | Günther Deschner <gd@samba.org> | 2008-12-17 23:51:30 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-12-17 23:52:15 +0100 |
commit | 93c61a814a5a79505a0bd2675a67cb3d6a4fdbe3 (patch) | |
tree | 367858712a7c18af04c7fe10170426a18990826f | |
parent | 076f15f54ef95e6b4d400a4bd241c767827bb1dd (diff) | |
download | samba-93c61a814a5a79505a0bd2675a67cb3d6a4fdbe3.tar.gz samba-93c61a814a5a79505a0bd2675a67cb3d6a4fdbe3.tar.bz2 samba-93c61a814a5a79505a0bd2675a67cb3d6a4fdbe3.zip |
s4: smbtorture, fix the build of netlogon test after idl change.
Guenther
-rw-r--r-- | source4/torture/rpc/netlogon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index 72c0b1ac6f..c7518d15a0 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -2137,7 +2137,7 @@ static bool test_GetDomainInfo(struct torture_context *tctx, q1.workstation_site = "Default-First-Site-Name"; q1.blob2.length = 0; q1.blob2.size = 0; - q1.blob2.data = NULL; + q1.blob2.array = NULL; q1.product.string = "product string"; torture_comment(tctx, "Testing netr_LogonGetDomainInfo\n"); @@ -2203,7 +2203,7 @@ static bool test_GetDomainInfo_async(struct torture_context *tctx, q1.workstation_site = "Default-First-Site-Name"; q1.blob2.length = 0; q1.blob2.size = 0; - q1.blob2.data = NULL; + q1.blob2.array = NULL; q1.product.string = "product string"; torture_comment(tctx, "Testing netr_LogonGetDomainInfo - async count %d\n", ASYNC_COUNT); |