summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-08-22 06:22:38 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-08-22 06:22:38 (GMT)
commit22bd672d19c378f1e6124ee18e64e5a88cf53739 (patch)
tree127016323f2f3059819f75adb5568a00a0431fc2 /plugins/check_snmp.c
parentd35f99c8a9f546a0f02f09ad3f722f66322e813d (diff)
downloadmonitoring-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_snmp.c')
-rw-r--r--plugins/check_snmp.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index af8f119..cb985ca 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -137,6 +137,10 @@ main (int argc, char **argv)
137 char *p2 = NULL; 137 char *p2 = NULL;
138 char *show = NULL; 138 char *show = NULL;
139 139
140 setlocale (LC_ALL, "");
141 bindtextdomain (PACKAGE, LOCALEDIR);
142 textdomain (PACKAGE);
143
140 labels = malloc (labels_size); 144 labels = malloc (labels_size);
141 unitv = malloc (unitv_size); 145 unitv = malloc (unitv_size);
142 for (i = 0; i < MAX_OIDS; i++) 146 for (i = 0; i < MAX_OIDS; i++)
@@ -443,7 +447,8 @@ process_arguments (int argc, char **argv)
443 case 't': /* timeout period */ 447 case 't': /* timeout period */
444 if (!is_integer (optarg)) 448 if (!is_integer (optarg))
445 usage2 (_("Timeout Interval must be an integer"), optarg); 449 usage2 (_("Timeout Interval must be an integer"), optarg);
446 timeout_interval = atoi (optarg); 450 else
451 timeout_interval = atoi (optarg);
447 break; 452 break;
448 453
449 /* Test parameters */ 454 /* Test parameters */