diff options
author | Stefan Metzmacher <metze@samba.org> | 2019-09-10 12:33:34 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2019-09-10 17:38:40 +0000 |
commit | c6b48490ac68f23c9f172bdfa91954a960928795 (patch) | |
tree | cac391c2b78261d5fbd3b24bbd11e5c7d9e7625a /source4/torture/drs | |
parent | f5a51061470dda55de04555f7e4dbd1058a1f3c4 (diff) | |
download | samba-c6b48490ac68f23c9f172bdfa91954a960928795.tar.gz |
s4:torture: always add ';' after torture_assert()
The next commit will require this.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source4/torture/drs')
-rw-r--r-- | source4/torture/drs/rpc/msds_intid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/drs/rpc/msds_intid.c b/source4/torture/drs/rpc/msds_intid.c index 1fb5c782bdf..4e840aa332f 100644 --- a/source4/torture/drs/rpc/msds_intid.c +++ b/source4/torture/drs/rpc/msds_intid.c @@ -600,13 +600,13 @@ static bool test_dsintid_schema(struct torture_context *tctx, struct DsIntIdTest la->attid == dsdb_attr->attributeID_id, _make_error_message(ctx, la->attid, dsdb_attr, - la->identifier)) + la->identifier)); if (dsdb_attr->msDS_IntId) { torture_assert(tctx, la->attid != dsdb_attr->msDS_IntId, _make_error_message(ctx, la->attid, dsdb_attr, - la->identifier)) + la->identifier)); } } |