summaryrefslogtreecommitdiffstats
path: root/source4/torture/rpc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-02-04 10:08:48 +0100
committerGünther Deschner <gd@samba.org>2014-02-11 16:20:29 +0100
commit8eb7ad289c844c6def4aeeb6fffbbde2549108cb (patch)
treeddd2b244f09c700332222e2610481ca6c44b5d95 /source4/torture/rpc
parente795b6c6ecb144c84fa9e72705f970037623d91a (diff)
downloadsamba-8eb7ad289c844c6def4aeeb6fffbbde2549108cb.tar.gz
samba-8eb7ad289c844c6def4aeeb6fffbbde2549108cb.tar.xz
samba-8eb7ad289c844c6def4aeeb6fffbbde2549108cb.zip
s4:torture/rpc: remove unused variable in frsapi.c
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/frsapi.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source4/torture/rpc/frsapi.c b/source4/torture/rpc/frsapi.c
index 06f15a2d503..a11872a1a75 100644
--- a/source4/torture/rpc/frsapi.c
+++ b/source4/torture/rpc/frsapi.c
@@ -256,21 +256,21 @@ struct torture_suite *torture_rpc_frsapi(TALLOC_CTX *mem_ctx)
{
struct torture_rpc_tcase *tcase;
struct torture_suite *suite = torture_suite_create(mem_ctx, "frsapi");
- struct torture_test *test;
tcase = torture_suite_add_rpc_iface_tcase(suite, "frsapi",
&ndr_table_frsapi);
- test = torture_rpc_tcase_add_test(tcase, "DsPollingIntervalW",
- test_DsPollingIntervalW);
+ torture_rpc_tcase_add_test(tcase, "DsPollingIntervalW",
+ test_DsPollingIntervalW);
- test = torture_rpc_tcase_add_test(tcase, "IsPathReplicated",
- test_IsPathReplicated);
+ torture_rpc_tcase_add_test(tcase, "IsPathReplicated",
+ test_IsPathReplicated);
- test = torture_rpc_tcase_add_test(tcase, "ForceReplication",
- test_ForceReplication);
+ torture_rpc_tcase_add_test(tcase, "ForceReplication",
+ test_ForceReplication);
+
+ torture_rpc_tcase_add_test(tcase, "InfoW",
+ test_InfoW);
- test = torture_rpc_tcase_add_test(tcase, "InfoW",
- test_InfoW);
return suite;
}