diff options
Diffstat (limited to 'plugins/check_procs.c')
-rw-r--r-- | plugins/check_procs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 3eefdb4..d39bfa5 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -348,7 +348,7 @@ process_arguments (int argc, char **argv) | |||
348 | exit (STATE_OK); | 348 | exit (STATE_OK); |
349 | case 't': /* timeout period */ | 349 | case 't': /* timeout period */ |
350 | if (!is_integer (optarg)) | 350 | if (!is_integer (optarg)) |
351 | usage (_("Timeout Interval must be an integer!\n\n")); | 351 | usage2 (_("Timeout interval must be a positive integer"), optarg); |
352 | else | 352 | else |
353 | timeout_interval = atoi (optarg); | 353 | timeout_interval = atoi (optarg); |
354 | break; | 354 | break; |
@@ -588,8 +588,8 @@ print_help (void) | |||
588 | { | 588 | { |
589 | print_revision (progname, revision); | 589 | print_revision (progname, revision); |
590 | 590 | ||
591 | printf (_("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>")); | 591 | printf ("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>"); |
592 | printf (_(COPYRIGHT), copyright, email); | 592 | printf (COPYRIGHT, copyright, email); |
593 | 593 | ||
594 | printf(_("\ | 594 | printf(_("\ |
595 | Checks all processes and generates WARNING or CRITICAL states if the specified\n\ | 595 | Checks all processes and generates WARNING or CRITICAL states if the specified\n\ |