summaryrefslogtreecommitdiffstats
path: root/plugins/check_cluster.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-12-11 05:57:35 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-12-11 05:57:35 (GMT)
commit56c9db8516069b34a3174ee6511d5e6962007d27 (patch)
tree73ebcece0b7acccad3a4f1ff2c30c43e7c7b9bef /plugins/check_cluster.c
parent14be3a7df38404c2b35007c7fbd7111eb0495980 (diff)
downloadmonitoring-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/check_cluster.c')
-rw-r--r--plugins/check_cluster.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/check_cluster.c b/plugins/check_cluster.c
index 2c7ee11..6f9c3e6 100644
--- a/plugins/check_cluster.c
+++ b/plugins/check_cluster.c
@@ -71,6 +71,10 @@ int main(int argc, char **argv){
71 int return_code=STATE_OK; 71 int return_code=STATE_OK;
72 thresholds *thresholds = NULL; 72 thresholds *thresholds = NULL;
73 73
74 setlocale (LC_ALL, "");
75 bindtextdomain (PACKAGE, LOCALEDIR);
76 textdomain (PACKAGE);
77
74 if(process_arguments(argc,argv)==ERROR) 78 if(process_arguments(argc,argv)==ERROR)
75 usage(_("Could not parse arguments")); 79 usage(_("Could not parse arguments"));
76 80