diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-02 16:42:57 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-02 16:42:57 (GMT) |
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 9de3fad..c758530 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.") | |||
59 | 59 | ||
60 | print_usage (); | 60 | print_usage (); |
61 | 61 | ||
62 | printf (_(HELP_VRSN)); | 62 | printf (_(UT_HELP_VRSN)); |
63 | 63 | ||
64 | printf (_("\ | 64 | printf (_("\ |
65 | -w, --warning=INTEGER\n\ | 65 | -w, --warning=INTEGER\n\ |
@@ -95,9 +95,11 @@ and generates an alert if free space is less than one of the threshold values.") | |||
95 | -e, --errors-only\n\ | 95 | -e, --errors-only\n\ |
96 | Display only devices/mountpoints with errors\n")); | 96 | Display only devices/mountpoints with errors\n")); |
97 | 97 | ||
98 | printf (_(TIMEOUT), DEFAULT_SOCKET_TIMEOUT); | 98 | printf (_(UT_WARN_CRIT)); |
99 | 99 | ||
100 | printf (_(VRBS)); | 100 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); |
101 | |||
102 | printf (_(UT_VERBOSE)); | ||
101 | 103 | ||
102 | printf ("%s", _("Examples:\n\ | 104 | printf ("%s", _("Examples:\n\ |
103 | check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n\ | 105 | check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n\ |