* src/chgpasswd.c, src/newusers.c: There is no need to test for 0

after getopt_long. No options have flag != NULL.
This commit is contained in:
nekral-guest
2009-04-28 20:10:18 +00:00
parent 613dc54ac5
commit f8b8aaf5e4
2 changed files with 2 additions and 5 deletions

View File

@@ -188,9 +188,6 @@ static void process_flags (int argc, char **argv)
}
break;
#endif
case 0:
/* long option */
break;
default:
usage ();
break;