X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_stat.c;h=bd48ec6c3ec366b27b08fd665eeb306e21e49f3f;hb=9040c686e2194855afd52ff0424221efc25a311a;hp=a7b1f33c10e368ba510bb8164a0062284a0653cc;hpb=285da1fa16e80919db972b1d7021c0b4705bedb1;p=rrdtool.git diff --git a/src/rrd_stat.c b/src/rrd_stat.c index a7b1f33..bd48ec6 100644 --- a/src/rrd_stat.c +++ b/src/rrd_stat.c @@ -29,7 +29,7 @@ rrd_stat(int argc, char **argv) printf("\t %lu \n",rrd.stat_head->pdp_step); #if HAVE_STRFTIME strftime(somestring,200,"%Y-%m-%d %H:%M:%S %Z", - localtime(&rrd.live_head->last_up)); + localtime_r(&rrd.live_head->last_up, &tm)); #else # error "Need strftime" #endif @@ -116,7 +116,7 @@ rrd_stat(int argc, char **argv) timer++; #if HAVE_STRFTIME - strftime(somestring,200,"%Y-%m-%d %H:%M:%S %Z", localtime(&now)); + strftime(somestring,200,"%Y-%m-%d %H:%M:%S %Z", localtime_r(&now, &tm)); #else # error "Need strftime" #endif