From: oetiker Date: Sat, 3 May 2003 15:41:41 +0000 (+0000) Subject: small patch to rrd_create.c that corrects problem with the X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=e6cc0dc23827fc99d276884da138985669c956a2 small patch to rrd_create.c that corrects problem with the version number of the newly created files. -- Sasha Mikheev git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@206 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_create.c b/src/rrd_create.c index e9dc2aa..a3bfafe 100644 --- a/src/rrd_create.c +++ b/src/rrd_create.c @@ -114,8 +114,7 @@ rrd_create_r(char *filename, /* set some defaults */ strcpy(rrd.stat_head->cookie,RRD_COOKIE); - /* assume the will be version 1 compatible */ - strcpy(rrd.stat_head->version,"0001"); + strcpy(rrd.stat_head->version,RRD_VERSION); rrd.stat_head->float_cookie = FLOAT_COOKIE; rrd.stat_head->ds_cnt = 0; /* this will be adjusted later */ rrd.stat_head->rra_cnt = 0; /* ditto */ @@ -170,8 +169,6 @@ rrd_create_r(char *filename, break; case DST_CDEF: parseCDEF_DS(&argv[i][offset+3],&rrd, rrd.stat_head->ds_cnt); - /* need to mark the file w/ current version */ - strcpy(rrd.stat_head->version,RRD_VERSION); break; default: rrd_set_error("invalid DS type specified"); @@ -213,8 +210,6 @@ rrd_create_r(char *filename, rrd.rra_def[rrd.stat_head->rra_cnt].par[RRA_hw_beta].u_val = 1.0/288; rrd.rra_def[rrd.stat_head->rra_cnt].par[RRA_dependent_rra_idx].u_cnt = rrd.stat_head -> rra_cnt; - /* need to mark the file w/ current version */ - strcpy(rrd.stat_head->version,RRD_VERSION); break; case CF_DEVSEASONAL: case CF_SEASONAL: