diff options
author | Volker Lendecke <vl@samba.org> | 2012-06-14 20:33:52 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-21 16:05:30 +0200 |
commit | a7f4c2b6643002c22505566e0833162c6f4d5088 (patch) | |
tree | 9d1ce2a498ca254c5fad19ec5c56d4b32e5cbfd7 /source3 | |
parent | 7a2daf34f28ff25a993edb9c10b3327db70ce258 (diff) | |
download | samba-a7f4c2b6643002c22505566e0833162c6f4d5088.tar.gz samba-a7f4c2b6643002c22505566e0833162c6f4d5088.tar.bz2 samba-a7f4c2b6643002c22505566e0833162c6f4d5088.zip |
s3: Remove an unnecessary ()
Signed-off-by: Michael Adam <obnox@samba.org>
Autobuild-User(master): Michael Adam <obnox@samba.org>
Autobuild-Date(master): Thu Jun 21 16:05:30 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/idmap_tdb_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |