diff options
author | Günther Deschner <gd@samba.org> | 2008-10-28 15:19:05 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-28 23:40:51 +0100 |
commit | 532fd92bdb7f6bc81afa155e09c039549d689a3e (patch) | |
tree | 8fd0729a91f5adc393f4f6702bbd047f4876ff45 /source4/torture | |
parent | bb3836a67f7b61f22b5ec036da52a0077d933343 (diff) | |
download | samba-532fd92bdb7f6bc81afa155e09c039549d689a3e.tar.gz samba-532fd92bdb7f6bc81afa155e09c039549d689a3e.tar.xz samba-532fd92bdb7f6bc81afa155e09c039549d689a3e.zip |
s4-smbtorture: fix test_LogonUasLogoff.
Guenther
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/netlogon.c | 2 |
1 files changed, 2 insertions, 0 deletions
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"); |