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_time.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_time.c')
-rw-r--r-- | plugins/check_time.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/check_time.c b/plugins/check_time.c index acfc3ef..b6d9e38 100644 --- a/plugins/check_time.c +++ b/plugins/check_time.c | |||
@@ -75,6 +75,9 @@ main (int argc, char **argv) | |||
75 | bindtextdomain (PACKAGE, LOCALEDIR); | 75 | bindtextdomain (PACKAGE, LOCALEDIR); |
76 | textdomain (PACKAGE); | 76 | textdomain (PACKAGE); |
77 | 77 | ||
78 | /* Parse extra opts if any */ | ||
79 | argv=np_extra_opts (&argc, argv, progname); | ||
80 | |||
78 | if (process_arguments (argc, argv) == ERROR) | 81 | if (process_arguments (argc, argv) == ERROR) |
79 | usage4 (_("Could not parse arguments")); | 82 | usage4 (_("Could not parse arguments")); |
80 | 83 | ||
@@ -344,6 +347,7 @@ print_help (void) | |||
344 | print_usage (); | 347 | print_usage (); |
345 | 348 | ||
346 | printf (_(UT_HELP_VRSN)); | 349 | printf (_(UT_HELP_VRSN)); |
350 | printf (_(UT_EXTRA_OPTS)); | ||
347 | 351 | ||
348 | printf (_(UT_HOST_PORT), 'p', myport); | 352 | printf (_(UT_HOST_PORT), 'p', myport); |
349 | 353 | ||
@@ -359,6 +363,13 @@ print_help (void) | |||
359 | printf (" %s\n", _("Response time (sec.) necessary to result in critical status")); | 363 | printf (" %s\n", _("Response time (sec.) necessary to result in critical status")); |
360 | 364 | ||
361 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); | 365 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); |
366 | |||
367 | #ifdef NP_EXTRA_OPTS | ||
368 | printf ("\n"); | ||
369 | printf ("%s\n", _("Notes:")); | ||
370 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
371 | #endif | ||
372 | |||
362 | printf (_(UT_SUPPORT)); | 373 | printf (_(UT_SUPPORT)); |
363 | } | 374 | } |
364 | 375 | ||