diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2006-06-15 12:52:25 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2006-06-15 12:52:25 +0000 |
commit | e5324624caefb201439012d795bebdf46966ec9c (patch) | |
tree | 0d94d5ab9044c1ac6aebf67906e7d7626135c1fb /plugins/check_mrtg.c | |
parent | 180f20d60dde6e2584e2abda4e9f9e4fc6d8c1ae (diff) | |
download | monitoring-plugins-e5324624caefb201439012d795bebdf46966ec9c.tar.gz |
cleaning help and usage
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1432 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mrtg.c')
-rw-r--r-- | plugins/check_mrtg.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c index 6b08195b..f98239c7 100644 --- a/plugins/check_mrtg.c +++ b/plugins/check_mrtg.c @@ -305,10 +305,11 @@ print_help (void) printf ("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>\n"); printf (COPYRIGHT, copyright, email); - printf(_("\ -This plugin will check either the average or maximum value of one of the\n\ -two variables recorded in an MRTG log file.\n\n")); + printf ("%s\n", _("This plugin will check either the average or maximum value of one of the")); + printf ("%s\n", _("two variables recorded in an MRTG log file.")); + printf ("\n\n"); + print_usage (); printf (_(UT_HELP_VRSN)); @@ -366,8 +367,7 @@ this plugin works well for monitoring that kind of data as well.\n\n")); void print_usage (void) { - printf ("\ -Usage: %s -F log_file -a <AVG | MAX> -v variable -w warning -c critical\n\ - [-l label] [-u units] [-e expire_minutes] [-t timeout]\n\ - [-v]\n", progname); + printf (_("Usage:")); + printf ("%s -F log_file -a <AVG | MAX> -v variable -w warning -c critical\n",progname); + printf ("[-l label] [-u units] [-e expire_minutes] [-t timeout] [-v]\n"); } |