(main): Use getopt where it suffices, not getopt_long.

This commit is contained in:
Paul Eggert
2004-09-21 22:07:51 +00:00
parent aa1ed28185
commit 3456364b8c
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -298,12 +298,11 @@ main (int argc, char **argv)
parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
usage, AUTHORS, (char const *) NULL);
if (getopt (argc, argv, "") != -1)
usage (EXIT_FAILURE);
have_read_stdin = false;
if (getopt_long (argc, argv, "", NULL, NULL) != -1)
usage (EXIT_FAILURE);
if (optind == argc)
ok = cksum ("-", false);
else
+1 -1
View File
@@ -1360,7 +1360,7 @@ main (int argc, char **argv)
parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
usage, AUTHORS, (char const *) NULL);
if (getopt_long (argc, argv, "", NULL, NULL) != -1)
if (getopt (argc, argv, "") != -1)
usage (EXIT_FAILURE);
/* Don't close stdout on exit from here on. */