From: Francois Fleuret Date: Thu, 11 Mar 2010 07:05:56 +0000 (+0100) Subject: The 'i' option was missing in getopt(). X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=finddup.git;a=commitdiff_plain;h=5d880a48149f85f6d5ac7942a696248eac0b8acc The 'i' option was missing in getopt(). --- diff --git a/finddup.c b/finddup.c index 562cf5c..1502791 100644 --- a/finddup.c +++ b/finddup.c @@ -468,7 +468,7 @@ int main(int argc, char **argv) { setlocale (LC_ALL, ""); while (1) { - c = getopt(argc, argv, "hrcgd0p"); + c = getopt(argc, argv, "hircgd0p"); if (c == -1) break;