diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-05 13:02:16 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-03-05 16:12:05 +1100 |
commit | 2e1e446ba3f9fd177a29876a9d7173d11b334f40 (patch) | |
tree | 3dbd902ebec50d28bda49eeedafbac75b98732f5 | |
parent | aaafadb7d5a835f88fce3fbea8127d9c5ddb7181 (diff) | |
download | samba-2e1e446ba3f9fd177a29876a9d7173d11b334f40.tar.gz samba-2e1e446ba3f9fd177a29876a9d7173d11b334f40.tar.bz2 samba-2e1e446ba3f9fd177a29876a9d7173d11b334f40.zip |
s4-torture: fixed commas separating C statements
-rw-r--r-- | source4/torture/rpc/handles.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source4/torture/rpc/handles.c b/source4/torture/rpc/handles.c index bbd0415544..fa42a6ad8f 100644 --- a/source4/torture/rpc/handles.c +++ b/source4/torture/rpc/handles.c @@ -120,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); @@ -402,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); @@ -490,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); @@ -570,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; |