X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Frrd_restore.c;h=d3a2c8a91c3066d45c046c1b845e1d608a848b2c;hb=3a9760d1aea27a60cf558cf8998042acc455fd61;hp=1164adbec0c9df876470030023a3b62c321f8146;hpb=a6cabd4d567fa0bfd8192ef99c804f1b2359e22d;p=rrdtool.git diff --git a/src/rrd_restore.c b/src/rrd_restore.c index 1164adb..d3a2c8a 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2.23 Copyright by Tobi Oetiker, 1997-2007 + * RRDtool 1.2.99907080300 Copyright by Tobi Oetiker, 1997-2007 ***************************************************************************** * rrd_restore.c creates new rrd from data dumped by rrd_dump.c *****************************************************************************/ @@ -224,7 +224,7 @@ int xml2rrd( return -1; } /* make sure we output the right version only go over 3 if input is over 3 too */ - if (input_version > 3 ){ + if (input_version > 3) { strcpy(rrd->stat_head->version, RRD_VERSION); } else { strcpy(rrd->stat_head->version, RRD_VERSION3); @@ -383,6 +383,11 @@ int xml2rrd( read_tag(&ptr2, "seasonal_smooth_idx", "%lu", &(rrd->rra_def[rra_index]. par[RRA_seasonal_smooth_idx].u_cnt)); + if (atoi(rrd->stat_head->version) >= 4) { + read_tag(&ptr2, "smoothing_window", "%lf", + &(rrd->rra_def[rra_index]. + par[RRA_seasonal_smoothing_window].u_val)); + } read_tag(&ptr2, "dependent_rra_idx", "%lu", &(rrd->rra_def[rra_index]. par[RRA_dependent_rra_idx].u_cnt));