summaryrefslogtreecommitdiffstats
path: root/plugins/check_time.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_time.c')
-rw-r--r--plugins/check_time.c11
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