diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-22 06:22:38 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-22 06:22:38 +0000 |
commit | 22bd672d19c378f1e6124ee18e64e5a88cf53739 (patch) | |
tree | 127016323f2f3059819f75adb5568a00a0431fc2 /plugins/check_swap.c | |
parent | d35f99c8a9f546a0f02f09ad3f722f66322e813d (diff) | |
download | monitoring-plugins-22bd672d19c378f1e6124ee18e64e5a88cf53739.tar.gz |
- bindtextdomain for gettext, a few other smale cleanups here and there
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@690 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r-- | plugins/check_swap.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index a4e7e814..3bbea77b 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -71,6 +71,10 @@ main (int argc, char **argv) char str[32]; char *status; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + status = strdup(""); if (process_arguments (argc, argv) != OK) @@ -205,8 +209,6 @@ int process_arguments (int argc, char **argv) { int c = 0; /* option character */ - int wc = 0; /* warning counter */ - int cc = 0; /* critical counter */ int option = 0; static struct option longopts[] = { @@ -229,7 +231,7 @@ process_arguments (int argc, char **argv) break; switch (c) { - case 'w': /* warning time threshold */ + case 'w': /* warning size threshold */ if (is_intnonneg (optarg)) { warn_size = atoi (optarg); break; @@ -246,7 +248,7 @@ process_arguments (int argc, char **argv) else { usage (_("Warning threshold must be integer or percentage!\n")); } - case 'c': /* critical time threshold */ + case 'c': /* critical size threshold */ if (is_intnonneg (optarg)) { crit_size = atoi (optarg); break; |