X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_restore.c;h=d8689c0a72ba4f9f108f82265a8abb09ebdbf022;hp=06153215ac5e202cec5b21c5393914b9816c64b0;hb=c24cf5317f753d0bfb376835b4f907462a770384;hpb=3c268443bb768669f3bd095b9e95a9a5ab4c5ef2 diff --git a/src/rrd_restore.c b/src/rrd_restore.c index 0615321..d8689c0 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc6 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc9 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2008 Florian octo Forster * Distributed under the GPL ***************************************************************************** @@ -163,7 +163,7 @@ static int value_check_range( if (((!isnan(min)) && (*rrd_value < min)) || ((!isnan(max)) && (*rrd_value > max))) - *rrd_value = NAN; + *rrd_value = DNAN; return (0); } /* int value_check_range */