From bb3836a67f7b61f22b5ec036da52a0077d933343 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 28 Oct 2008 15:18:53 +0100 Subject: s4-smbtorture: fix test_LogonUasLogon. Guenther --- source4/torture/rpc/netlogon.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/torture/rpc/netlogon.c') diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index c2e12ec01d..19163e931a 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -42,10 +42,12 @@ static bool test_LogonUasLogon(struct torture_context *tctx, { NTSTATUS status; struct netr_LogonUasLogon r; + struct netr_UasInfo *info = NULL; r.in.server_name = NULL; r.in.account_name = cli_credentials_get_username(cmdline_credentials); r.in.workstation = TEST_MACHINE_NAME; + r.out.info = &info; status = dcerpc_netr_LogonUasLogon(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "LogonUasLogon"); -- cgit