aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_fping.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_fping.c')
-rw-r--r--plugins/check_fping.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/plugins/check_fping.c b/plugins/check_fping.c
index 7f05d4d5..5ffcd16e 100644
--- a/plugins/check_fping.c
+++ b/plugins/check_fping.c
@@ -242,9 +242,7 @@ process_arguments (int argc, char **argv)
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
@@ -301,15 +299,13 @@ process_arguments (int argc, char **argv)
}
}
-
if (server_name == NULL)
- usage (_("Hostname was not supplied\n\n"));
+ usage4 (_("Hostname was not supplied"));
return OK;
}
-
int
get_threshold (char *arg, char *rv[2])
{
@@ -351,7 +347,6 @@ get_threshold (char *arg, char *rv[2])
}
-
void
print_help (void)
{
@@ -395,7 +390,6 @@ percentage of packet loss to trigger an alarm state.\n"));
}
-
void
print_usage (void)
{