diff options
author | Jim Meyering <jim@meyering.net> | 1995-06-22 03:58:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-06-22 03:58:21 +0000 |
commit | 3fba1e486e23b06fc7cf83c3b92ca61057987fb5 (patch) | |
tree | 8020a3c2c1c90e5736a48499be8d861240d5f1d3 | |
parent | 59f93bf56c31431da79f81a932c6adbf8e88ef5c (diff) | |
download | coreutils-3fba1e486e23b06fc7cf83c3b92ca61057987fb5.tar.xz |
(main): Remove spurious colon in getopt spec string.
From Ken Pizzini <kenp@spry.com>.
-rw-r--r-- | src/md5sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/md5sum.c b/src/md5sum.c index 349bd7738..1efb2b1c7 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -259,7 +259,7 @@ main (argc, argv) /* Setting values of global variables. */ program_name = argv[0]; - while ((opt = getopt_long (argc, argv, "bc:hs::tvV", long_options, NULL)) + while ((opt = getopt_long (argc, argv, "bc:hs:tvV", long_options, NULL)) != EOF) switch (opt) { |