mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-13 18:50:01 -04:00
negate must be POSIXly correct in handling options, else wrapped options get passed to it
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@416 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
7a7d4d7193
commit
ba477f3df8
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ process_arguments (int argc, char **argv)
|
|||
};
|
||||
|
||||
while (1) {
|
||||
c = getopt_long (argc, argv, "hVt:",
|
||||
c = getopt_long (argc, argv, "+hVt:",
|
||||
long_options, &option_index);
|
||||
|
||||
if (c == -1 || c == EOF)
|
||||
|
|
|
|||
Loading…
Reference in a new issue