From 5d880a48149f85f6d5ac7942a696248eac0b8acc Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Thu, 11 Mar 2010 08:05:56 +0100 Subject: [PATCH] The 'i' option was missing in getopt(). --- finddup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1