diff options
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r-- | plugins/check_snmp.c | 7 |
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 */ |