diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-12-01 02:46:01 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-12-01 02:46:01 +0000 |
commit | d4bda4c91bce00bf279107ff2a5d8ec4e8da42e2 (patch) | |
tree | 75e5eae4f8e59c1bf44e49624fab49ddabcc705d /plugins/check_procs.c | |
parent | 895b36fa372e42da690d281f99224cbc613af1f7 (diff) | |
download | monitoring-plugins-d4bda4c91bce00bf279107ff2a5d8ec4e8da42e2.tar.gz |
use usage2 function
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@781 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_procs.c')
-rw-r--r-- | plugins/check_procs.c | 36 |
1 files changed, 9 insertions, 27 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index d4792107..64e62dde 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c @@ -260,7 +260,7 @@ main (int argc, char **argv) printf (_("%d crit, %d warn out of "), crit, warn); } } - printf (ngettext ("%d process", "%d processes", procs), procs); + printf (ngettext ("%d process", "%d processes", (unsigned long) procs), procs); if (strcmp(fmt,"") != 0) { printf (_(" with %s"), fmt); @@ -361,10 +361,7 @@ process_arguments (int argc, char **argv) options |= PPID; break; } - printf (_("%s: Parent Process ID must be an integer!\n\n"), - progname); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("%s: Parent Process ID must be an integer!\n\n"), progname); case 's': /* status */ if (statopts) break; @@ -378,20 +375,14 @@ process_arguments (int argc, char **argv) uid = atoi (optarg); pw = getpwuid ((uid_t) uid); /* check to be sure user exists */ - if (pw == NULL) { - printf (_("UID %d was not found\n"), uid); - print_usage (); - exit (STATE_UNKNOWN); - } + if (pw == NULL) + usage2 (_("UID %d was not found\n"), uid); } else { pw = getpwnam (optarg); /* check to be sure user exists */ - if (pw == NULL) { - printf (_("User name %s was not found\n"), optarg); - print_usage (); - exit (STATE_UNKNOWN); - } + if (pw == NULL) + usage2 (_("User name %s was not found\n"), optarg); /* then get uid */ uid = pw->pw_uid; } @@ -423,20 +414,14 @@ process_arguments (int argc, char **argv) options |= RSS; break; } - printf (_("%s: RSS must be an integer!\n\n"), - progname); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("%s: RSS must be an integer!\n\n"), progname); case 'z': /* VSZ */ if (sscanf (optarg, "%d%[^0-9]", &vsz, tmp) == 1) { asprintf (&fmt, _("%s%sVSZ >= %d"), (fmt ? fmt : ""), (options ? ", " : ""), vsz); options |= VSZ; break; } - printf (_("%s: VSZ must be an integer!\n\n"), - progname); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("%s: VSZ must be an integer!\n\n"), progname); case 'P': /* PCPU */ /* TODO: -P 1.5.5 is accepted */ if (sscanf (optarg, "%f%[^0-9.]", &pcpu, tmp) == 1) { @@ -444,10 +429,7 @@ process_arguments (int argc, char **argv) options |= PCPU; break; } - printf (_("%s: PCPU must be a float!\n\n"), - progname); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("%s: PCPU must be a float!\n\n"), progname); case 'm': asprintf (&metric_name, "%s", optarg); if ( strcmp(optarg, "PROCS") == 0) { |