From 532fd92bdb7f6bc81afa155e09c039549d689a3e Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Tue, 28 Oct 2008 15:19:05 +0100 Subject: [PATCH] s4-smbtorture: fix test_LogonUasLogoff. Guenther --- source4/torture/rpc/netlogon.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index 19163e931a1..1c64385808e 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -60,10 +60,12 @@ static bool test_LogonUasLogoff(struct torture_context *tctx, { NTSTATUS status; struct netr_LogonUasLogoff r; + struct netr_UasLogoffInfo info; 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_LogonUasLogoff(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "LogonUasLogoff"); -- 2.34.1