From: Jim Meyering Date: Thu, 22 Jun 1995 03:58:21 +0000 (+0000) Subject: (main): Remove spurious colon in getopt spec string. X-Git-Tag: textutils-1_12_1~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3fba1e486e23b06fc7cf83c3b92ca61057987fb5;p=thirdparty%2Fcoreutils.git (main): Remove spurious colon in getopt spec string. From Ken Pizzini . --- diff --git a/src/md5sum.c b/src/md5sum.c index 349bd77384..1efb2b1c7f 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) {