diff options
author | Günther Deschner <gd@samba.org> | 2010-04-06 12:13:54 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-04-06 12:13:54 +0200 |
commit | 55e1af856ee64670c7ee925676d13f48ffcdd6ad (patch) | |
tree | 016663988e947cddec05b46735c5e732e457d716 | |
parent | 12bd7a1230c850856aa0bff8f1538bd3642469c6 (diff) | |
download | samba-55e1af856ee64670c7ee925676d13f48ffcdd6ad.tar.gz samba-55e1af856ee64670c7ee925676d13f48ffcdd6ad.tar.bz2 samba-55e1af856ee64670c7ee925676d13f48ffcdd6ad.zip |
s4-smbtorture: fix correct result error code in SetForm spoolss test.
Guenther
-rw-r--r-- | source4/torture/rpc/spoolss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index be03ee14fc..a4a5d08e14 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -2385,7 +2385,7 @@ static bool test_AddForm(struct torture_context *tctx, torture_assert_ntstatus_ok(tctx, status, "SetForm failed"); - torture_assert_werr_ok(tctx, r.out.result, "SetForm failed"); + torture_assert_werr_ok(tctx, sf.out.result, "SetForm failed"); } if (!print_server) ret &= test_GetForm(tctx, b, handle, form_name, 1); |