mirror of
git://git.sv.gnu.org/coreutils
synced 2026-06-06 07:42:21 -04:00
(main): Use getopt where it suffices, not getopt_long.
This commit is contained in:
+2
-3
@@ -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
|
||||
|
||||
@@ -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. */
|
||||
|
||||
Reference in New Issue
Block a user