diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 23:02:04 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 23:02:04 +0000 |
commit | 5e3fc41c6143676cf01b7aad789fc5f2cae5ce84 (patch) | |
tree | c6a4be653d48aab261ad1496f9b83f6f17c491e1 /plugins/check_swap.c | |
parent | c6a18d714a1ee49c62eb3b53ebff41ecadf3b7c2 (diff) | |
download | monitoring-plugins-5e3fc41c6143676cf01b7aad789fc5f2cae5ce84.tar.gz |
print_help and print_usage() cleanup
other misc cleanups
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@996 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r-- | plugins/check_swap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index 3a3ec35c..2e5f5c7c 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -479,7 +479,7 @@ print_help (void) printf (_(COPYRIGHT), copyright, email); - printf (_("Check swap space on local server.\n\n")); + printf (_("Check swap space on local machine.\n\n")); print_usage (); @@ -514,7 +514,7 @@ On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s.\n")); void print_usage (void) { - printf ("Usage:\n\ - %s [-av] -w <percent_free>%% -c <percent_free>%%\n\ - %s [-av] -w <bytes_free> -c <bytes_free>\n", progname, progname); + printf ("\ + Usage: %s [-av] -w <percent_free>%% -c <percent_free>%%\n\ + %s [-av] -w <bytes_free> -c <bytes_free>\n", progname, progname); } |