From: Adam Majer Date: Mon, 20 Feb 2017 13:49:30 +0000 (+0100) Subject: Remove extra parenthesis X-Git-Tag: 4.5~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F67%2Fhead;p=thirdparty%2Fshadow.git Remove extra parenthesis --- diff --git a/src/useradd.c b/src/useradd.c index 8b30a766d..6d944056a 100644 --- a/src/useradd.c +++ b/src/useradd.c @@ -2287,7 +2287,7 @@ int main (int argc, char **argv) * a valid existing user name, * so we canot call it before close_files() */ - if ((!lflg) && (getpwuid (user_id) != NULL)) { + if (!lflg && getpwuid (user_id) != NULL) { tallylog_reset (user_name); }