From 3fba1e486e23b06fc7cf83c3b92ca61057987fb5 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 22 Jun 1995 03:58:21 +0000 Subject: [PATCH] (main): Remove spurious colon in getopt spec string. From Ken Pizzini . --- src/md5sum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.3