1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s4:torture/rpc: remove unused variable in frsapi.c

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Guenther Deschner <gd@samba.org>
This commit is contained in:
Stefan Metzmacher 2014-02-04 10:08:48 +01:00 committed by Günther Deschner
parent e795b6c6ec
commit 8eb7ad289c

View File

@ -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;
}