From 22bd672d19c378f1e6124ee18e64e5a88cf53739 Mon Sep 17 00:00:00 2001 From: Karl DeBisschop Date: Fri, 22 Aug 2003 06:22:38 +0000 Subject: - 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 --- plugins/check_snmp.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'plugins/check_snmp.c') diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index af8f1198..cb985cab 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -137,6 +137,10 @@ main (int argc, char **argv) char *p2 = NULL; char *show = NULL; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + labels = malloc (labels_size); unitv = malloc (unitv_size); for (i = 0; i < MAX_OIDS; i++) @@ -443,7 +447,8 @@ process_arguments (int argc, char **argv) case 't': /* timeout period */ if (!is_integer (optarg)) usage2 (_("Timeout Interval must be an integer"), optarg); - timeout_interval = atoi (optarg); + else + timeout_interval = atoi (optarg); break; /* Test parameters */ -- cgit v1.2.3-74-g34f1