diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-01-04 11:51:04 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-01-04 11:51:04 +0000 |
commit | 818b440444d57a2058fc15f4d75ffb7a3552c441 (patch) | |
tree | a0b3a68a32a4d194c7368f6f5db82dbb6472ba4e /plugins/check_real.c | |
parent | 7d134133eb28389fb0684c276a255fc492b2598e (diff) | |
download | monitoring-plugins-818b440444d57a2058fc15f4d75ffb7a3552c441.tar.gz |
Fix bug #1574863: check_real does not accept the '-v' option
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1560 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_real.c')
-rw-r--r-- | plugins/check_real.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_real.c b/plugins/check_real.c index 17331f92..2d24e148 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c @@ -302,7 +302,7 @@ process_arguments (int argc, char **argv) } while (1) { - c = getopt_long (argc, argv, "+hVI:H:e:u:p:w:c:t:", longopts, + c = getopt_long (argc, argv, "+hvVI:H:e:u:p:w:c:t:", longopts, &option); if (c == -1 || c == EOF) |