summaryrefslogtreecommitdiff
path: root/source4/torture/rpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-28 15:19:05 +0100
committerGünther Deschner <gd@samba.org>2008-10-28 23:40:51 +0100
commit532fd92bdb7f6bc81afa155e09c039549d689a3e (patch)
tree8fd0729a91f5adc393f4f6702bbd047f4876ff45 /source4/torture/rpc
parentbb3836a67f7b61f22b5ec036da52a0077d933343 (diff)
downloadsamba-532fd92bdb7f6bc81afa155e09c039549d689a3e.tar.gz
samba-532fd92bdb7f6bc81afa155e09c039549d689a3e.tar.bz2
samba-532fd92bdb7f6bc81afa155e09c039549d689a3e.zip
s4-smbtorture: fix test_LogonUasLogoff.
Guenther
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/netlogon.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c
index 19163e931a..1c64385808 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");