diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-05-07 10:02:42 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-05-07 10:02:42 (GMT) |
commit | 44f8455b2cf248c6f50c35bfc3510d2946084c5b (patch) | |
tree | 26b696c5d61872f1d41466be9fcc650c22d75aeb /plugins/check_real.c | |
parent | 4d157889e3018119e07bdcc7f48afde1422f7396 (diff) | |
download | monitoring-plugins-44f8455b2cf248c6f50c35bfc3510d2946084c5b.tar.gz |
Added support for --extra-opts in all C plugins (disabled by default, see configure --help)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1991 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_real.c')
-rw-r--r-- | plugins/check_real.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/check_real.c b/plugins/check_real.c index 68a6c1e..d333c2a 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c | |||
@@ -77,6 +77,9 @@ main (int argc, char **argv) | |||
77 | bindtextdomain (PACKAGE, LOCALEDIR); | 77 | bindtextdomain (PACKAGE, LOCALEDIR); |
78 | textdomain (PACKAGE); | 78 | textdomain (PACKAGE); |
79 | 79 | ||
80 | /* Parse extra opts if any */ | ||
81 | argv=np_extra_opts (&argc, argv, progname); | ||
82 | |||
80 | if (process_arguments (argc, argv) == ERROR) | 83 | if (process_arguments (argc, argv) == ERROR) |
81 | usage4 (_("Could not parse arguments")); | 84 | usage4 (_("Could not parse arguments")); |
82 | 85 | ||
@@ -418,6 +421,7 @@ print_help (void) | |||
418 | print_usage (); | 421 | print_usage (); |
419 | 422 | ||
420 | printf (_(UT_HELP_VRSN)); | 423 | printf (_(UT_HELP_VRSN)); |
424 | printf (_(UT_EXTRA_OPTS)); | ||
421 | 425 | ||
422 | printf (_(UT_HOST_PORT), 'p', myport); | 426 | printf (_(UT_HOST_PORT), 'p', myport); |
423 | 427 | ||
@@ -440,6 +444,12 @@ print_help (void) | |||
440 | printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return")); | 444 | printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return")); |
441 | printf ("%s\n", _("values.")); | 445 | printf ("%s\n", _("values.")); |
442 | 446 | ||
447 | #ifdef NP_EXTRA_OPTS | ||
448 | printf ("\n"); | ||
449 | printf ("%s\n", _("Notes:")); | ||
450 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
451 | #endif | ||
452 | |||
443 | printf (_(UT_SUPPORT)); | 453 | printf (_(UT_SUPPORT)); |
444 | } | 454 | } |
445 | 455 | ||