collectd: Abort if any non-options are left over after command-line parsing.
authorSebastian Harl <sh@tokkee.org>
Wed, 10 Dec 2008 21:08:26 +0000 (22:08 +0100)
committerSebastian Harl <sh@tokkee.org>
Wed, 10 Dec 2008 21:08:26 +0000 (22:08 +0100)
This happens if any arguments not starting with a dash are passed to collectd.
Any of those are invalid, so let the user know about that.

Thanks to Kris (gruntruk) for (unknowingly) pointing that out ;-)

src/collectd.c

index a3f63b4..e8aaed2 100644 (file)
@@ -443,6 +443,9 @@ int main (int argc, char **argv)
                } /* switch (c) */
        } /* while (1) */
 
+       if (optind < argc)
+               exit_usage ();
+
        /*
         * Read options from the config file, the environment and the command
         * line (in that order, with later options overwriting previous ones in