From 759f94e17a5000d0a7bce5de1c21b6261d31a7d9 Mon Sep 17 00:00:00 2001 From: Adam Majer Date: Mon, 20 Feb 2017 14:49:30 +0100 Subject: [PATCH] Remove extra parenthesis --- src/useradd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/useradd.c b/src/useradd.c index 8b30a766..6d944056 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); }