diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-12-11 05:57:35 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-12-11 05:57:35 +0000 |
commit | 56c9db8516069b34a3174ee6511d5e6962007d27 (patch) | |
tree | 73ebcece0b7acccad3a4f1ff2c30c43e7c7b9bef /plugins-root | |
parent | 14be3a7df38404c2b35007c7fbd7111eb0495980 (diff) | |
download | monitoring-plugins-56c9db8516069b34a3174ee6511d5e6962007d27.tar.gz |
Adding missing function calls needed for i18n (only for plugins already in POTFILES.in)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1861 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-root')
-rw-r--r-- | plugins-root/check_icmp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index f0ba9d0c..7636bc71 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c @@ -371,6 +371,10 @@ main(int argc, char **argv) int icmp_sockerrno, udp_sockerrno, tcp_sockerrno; int result; struct rta_host *host; + + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); /* print a helpful error message if geteuid != 0 */ np_warn_if_not_root(); |