s4-torture: fixed commas separating C statements
[ira/wip.git] / source4 / torture / rpc / handles.c
index caca6b9e0a1e9dfda6978653091559eb17490095..fa42a6ad8ff0d8ad6907d221b5fd95039be15afe 100644 (file)
@@ -20,7 +20,6 @@
 */
 
 #include "includes.h"
-#include "torture/torture.h"
 #include "librpc/gen_ndr/ndr_samr_c.h"
 #include "librpc/gen_ndr/ndr_lsa_c.h"
 #include "librpc/gen_ndr/ndr_drsuapi_c.h"
@@ -121,7 +120,7 @@ static bool test_handles_lsa_shared(struct torture_context *torture)
        status = torture_rpc_connection(torture, &p1, &ndr_table_lsarpc);
        torture_assert_ntstatus_ok(torture, status, "opening lsa pipe1");
 
-       transport       = p1->conn->transport.transport,
+       transport       = p1->conn->transport.transport;
        assoc_group_id  = p1->assoc_group_id;
 
        torture_comment(torture, "use assoc_group_id[0x%08X] for new connections\n", assoc_group_id);
@@ -403,7 +402,7 @@ static bool test_handles_mixed_shared(struct torture_context *torture)
        status = torture_rpc_connection(torture, &p1, &ndr_table_samr);
        torture_assert_ntstatus_ok(torture, status, "opening samr pipe1");
 
-       transport       = p1->conn->transport.transport,
+       transport       = p1->conn->transport.transport;
        assoc_group_id  = p1->assoc_group_id;
 
        torture_comment(torture, "use assoc_group_id[0x%08X] for new connections\n", assoc_group_id);
@@ -491,7 +490,7 @@ static bool test_handles_random_assoc(struct torture_context *torture)
        status = torture_rpc_connection(torture, &p1, &ndr_table_samr);
        torture_assert_ntstatus_ok(torture, status, "opening samr pipe1");
 
-       transport       = p1->conn->transport.transport,
+       transport       = p1->conn->transport.transport;
        assoc_group_id  = p1->assoc_group_id;
 
        torture_comment(torture, "pip1 use assoc_group_id[0x%08X]\n", assoc_group_id);
@@ -571,7 +570,6 @@ static bool test_handles_drsuapi(struct torture_context *torture)
        return true;
 }
 
-
 struct torture_suite *torture_rpc_handles(TALLOC_CTX *mem_ctx)
 {
        struct torture_suite *suite;