diff --git a/ChangeLog b/ChangeLog index f2f2ef500..b373990c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-06-23 Robert Larice + * src/main.c : + tiny fix, reoccuring option `h' in the getopt_long() option string + 2011-06-23 Robert Larice * src/frontend/com_sysinfo.c : tiny rewrite, typefix, don't compare EOF with a char diff --git a/src/main.c b/src/main.c index 5d3792504..09165aca7 100644 --- a/src/main.c +++ b/src/main.c @@ -870,7 +870,7 @@ main(int argc, char **argv) {0, 0, 0, 0} }; - c = getopt_long (argc, argv, "hvbac:ihno:pqr:st:", + c = getopt_long (argc, argv, "hvbac:ino:pqr:st:", long_options, &option_index); if (c == -1) break;