diff options
author | M. Sean Finney <seanius@users.sourceforge.net> | 2005-06-28 02:26:18 (GMT) |
---|---|---|
committer | M. Sean Finney <seanius@users.sourceforge.net> | 2005-06-28 02:26:18 (GMT) |
commit | 2f904659dc3179148215f16aad4f9098aef222c5 (patch) | |
tree | cfb90680f356f31393afaf38a2c48ae54ad40689 | |
parent | d4c0948266f261525e12c58d58e0fc68987a9818 (diff) | |
download | monitoring-plugins-2f904659dc3179148215f16aad4f9098aef222c5.tar.gz |
set LC_NUMERIC to POSIX in check_load (1164325)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1195 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/check_load.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_load.c b/plugins/check_load.c index 9625036..21627fe 100644 --- a/plugins/check_load.c +++ b/plugins/check_load.c | |||
@@ -100,6 +100,7 @@ main (int argc, char **argv) | |||
100 | setlocale (LC_ALL, ""); | 100 | setlocale (LC_ALL, ""); |
101 | bindtextdomain (PACKAGE, LOCALEDIR); | 101 | bindtextdomain (PACKAGE, LOCALEDIR); |
102 | textdomain (PACKAGE); | 102 | textdomain (PACKAGE); |
103 | setlocale(LC_NUMERIC, "POSIX"); | ||
103 | 104 | ||
104 | if (process_arguments (argc, argv) == ERROR) | 105 | if (process_arguments (argc, argv) == ERROR) |
105 | usage4 (_("Could not parse arguments")); | 106 | usage4 (_("Could not parse arguments")); |