diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-25 23:17:46 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-25 23:17:46 +0000 |
commit | e9ccc6b21a1152bbf150302c4a29a6df79d75bd7 (patch) | |
tree | 91bf1ebb6f927fd628b298df2ac5a89580282591 /plugins/check_pgsql.c | |
parent | 71656b2aafffb69716620bf08cce76c925dc8fa3 (diff) | |
download | monitoring-plugins-e9ccc6b21a1152bbf150302c4a29a6df79d75bd7.tar.gz |
various fixes for localization
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1061 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_pgsql.c')
-rw-r--r-- | plugins/check_pgsql.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index b5b9ff81..d56ce9b0 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -209,9 +209,7 @@ process_arguments (int argc, char **argv) | |||
209 | 209 | ||
210 | switch (c) { | 210 | switch (c) { |
211 | case '?': /* usage */ | 211 | case '?': /* usage */ |
212 | printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); | 212 | usage2 (_("Unknown argument"), optarg); |
213 | print_usage (); | ||
214 | exit (STATE_UNKNOWN); | ||
215 | case 'h': /* help */ | 213 | case 'h': /* help */ |
216 | print_help (); | 214 | print_help (); |
217 | exit (STATE_OK); | 215 | exit (STATE_OK); |
@@ -232,7 +230,7 @@ process_arguments (int argc, char **argv) | |||
232 | break; | 230 | break; |
233 | case 'w': /* warning time threshold */ | 231 | case 'w': /* warning time threshold */ |
234 | if (!is_nonnegative (optarg)) | 232 | if (!is_nonnegative (optarg)) |
235 | usage2 (_("Critical threshold must be a positive integer"), optarg); | 233 | usage2 (_("Warning threshold must be a positive integer"), optarg); |
236 | else | 234 | else |
237 | twarn = strtod (optarg, NULL); | 235 | twarn = strtod (optarg, NULL); |
238 | break; | 236 | break; |