From a7f4c2b6643002c22505566e0833162c6f4d5088 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 14 Jun 2012 20:33:52 +0200 Subject: s3: Remove an unnecessary () Signed-off-by: Michael Adam Autobuild-User(master): Michael Adam Autobuild-Date(master): Thu Jun 21 16:05:30 CEST 2012 on sn-devel-104 --- source3/winbindd/idmap_tdb_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/idmap_tdb_common.c b/source3/winbindd/idmap_tdb_common.c index 669caf520a..6f700b848b 100644 --- a/source3/winbindd/idmap_tdb_common.c +++ b/source3/winbindd/idmap_tdb_common.c @@ -583,7 +583,7 @@ static NTSTATUS idmap_tdb_common_sids_to_unixids_action(struct db_context *db, } } - if ((state->ids[i]->status == ID_MAPPED)) { + if (state->ids[i]->status == ID_MAPPED) { num_mapped += 1; } -- cgit