From: Tobias Oetiker Date: Sun, 15 Nov 2009 10:51:10 +0000 (+0000) Subject: Switch LC_NUMERIC to C prior to creating rrd_xport output. This makes sure that numbe... X-Git-Tag: 1.4.2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5279af2a30aa19afde2caa25399e0bf88795197c;p=thirdparty%2Frrdtool-1.x.git Switch LC_NUMERIC to C prior to creating rrd_xport output. This makes sure that numbers are always output with a . and not with a , git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1968 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_tool.c b/src/rrd_tool.c index 1e635fd1..af55f1e5 100644 --- a/src/rrd_tool.c +++ b/src/rrd_tool.c @@ -712,6 +712,7 @@ int HandleInputLine( if (rrd_xport (argc - 1, &argv[1], &xxsize, &start, &end, &step, &col_cnt, &legend_v, &data) != -1) { + char *old_locale = setlocale(LC_NUMERIC, "C"); row_cnt = (end - start) / step; ptr = data; printf("\n\n", @@ -764,6 +765,7 @@ int HandleInputLine( free(data); printf(" \n", DATA_TAG); printf("\n", ROOT_TAG); + setlocale(LC_NUMERIC, old_locale); } free(vtag); } else if (strcmp("graph", argv[1]) == 0) {