Code

fix use of setlocale all over the place ...
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Wed, 8 Sep 2010 12:15:13 +0000 (12:15 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Wed, 8 Sep 2010 12:15:13 +0000 (12:15 +0000)
commit68583e5c68ae17ec1a074f83f68701b110a04f36
tree350c8254449632f11a253d6a6108cc3e4776771c
parentb0c40b6d27db486c11b1d17301d045b06d77551a
fix use of setlocale all over the place ...

-    old_locale = setlocale(LC_NUMERIC, "C");
+    old_locale = setlocale(LC_NUMERIC, NULL);
+    setlocale(LC_NUMERIC, "C");

the original version never restored the locale since it held a copy of the
new locale and not the old one despite the name. bug found by  Pawe? 'Reef' Polewicz

git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.4@2127 a5681a0c-68f1-0310-ab6d-d61299d08faa
program/src/rrd_create.c
program/src/rrd_dump.c
program/src/rrd_graph.c
program/src/rrd_rpncalc.c
program/src/rrd_tool.c
program/src/rrd_tune.c
program/src/rrd_update.c