X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_dump.c;h=504e58316e9e7408fc5c36d4827015433ec49e4f;hb=c2467a0c047b5d75d53343b42df7006b0c8073db;hp=40e707bf44f22a8a90472e9f1dc8011136342c54;hpb=e33406dce8476be85e5edc8cdc5579bce0f05af0;p=rrdtool.git diff --git a/src/rrd_dump.c b/src/rrd_dump.c index 40e707b..504e583 100644 --- a/src/rrd_dump.c +++ b/src/rrd_dump.c @@ -45,6 +45,11 @@ #include "rrd_rpncalc.h" #include "rrd_client.h" +#ifdef HAVE_LOCALE_H +#include +#endif + + #if !(defined(NETWARE) || defined(WIN32)) extern char *tzname[2]; #endif @@ -64,6 +69,7 @@ static int rrd_dump_opt_r( rrd_t rrd; rrd_value_t value; struct tm tm; + char *old_locale = ""; rrd_init(&rrd); rrd_file = rrd_open(filename, &rrd, RRD_READONLY | RRD_READAHEAD); @@ -80,6 +86,9 @@ static int rrd_dump_opt_r( } else { out_file = stdout; } +#ifdef HAVE_SETLOCALE + old_locale = setlocale(LC_NUMERIC, "C"); +#endif if (opt_header == 1) { fputs("\n", out_file); @@ -105,7 +114,7 @@ static int rrd_dump_opt_r( } fprintf(out_file, "\t%lu \n", rrd.stat_head->pdp_step); -#if HAVE_STRFTIME +#ifdef HAVE_STRFTIME localtime_r(&rrd.live_head->last_up, &tm); strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm); #else @@ -434,6 +443,9 @@ static int rrd_dump_opt_r( if (out_file != stdout) { fclose(out_file); } +#ifdef HAVE_SETLOCALE + setlocale(LC_NUMERIC, old_locale); +#endif return rrd_close(rrd_file); }