diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-02 16:42:57 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-02 16:42:57 +0000 |
commit | b07cec408f61acd3c34ad1c03b212bba9b66c454 (patch) | |
tree | 4a906eebd467e2d71687e57205d07368f2adcc1b /plugins/check_disk.c | |
parent | f4e6b2a946c087c096e38415210219fe1c870822 (diff) | |
download | monitoring-plugins-b07cec408f61acd3c34ad1c03b212bba9b66c454.tar.gz |
establish "UT_" namespace for usage text in #defines
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@631 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r-- | plugins/check_disk.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 9de3fad5..c758530e 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -59,7 +59,7 @@ and generates an alert if free space is less than one of the threshold values.") print_usage (); - printf (_(HELP_VRSN)); + printf (_(UT_HELP_VRSN)); printf (_("\ -w, --warning=INTEGER\n\ @@ -95,9 +95,11 @@ and generates an alert if free space is less than one of the threshold values.") -e, --errors-only\n\ Display only devices/mountpoints with errors\n")); - printf (_(TIMEOUT), DEFAULT_SOCKET_TIMEOUT); + printf (_(UT_WARN_CRIT)); - printf (_(VRBS)); + printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); + + printf (_(UT_VERBOSE)); printf ("%s", _("Examples:\n\ check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n\ |