X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_first.c;h=82b99f385ef6f5fae0bcaee8bbbb1e2fd1466e91;hb=59525f3de81d5f6a9c5e5fc3a6662fa7e074163f;hp=abba426f21ecf60ce86c2f27b3cd839605d0986b;hpb=dd86fdf1b4d99437b9aa19934e02230c090cc1d5;p=rrdtool.git diff --git a/src/rrd_first.c b/src/rrd_first.c index abba426..82b99f3 100644 --- a/src/rrd_first.c +++ b/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2.23 Copyright by Tobi Oetiker, 1997-2007 + * RRDtool 1.3.2 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_first Return ***************************************************************************** @@ -15,15 +15,15 @@ time_t rrd_first( { int target_rraindex = 0; char *endptr; + struct option long_options[] = { + {"rraindex", required_argument, 0, 129}, + {0, 0, 0, 0} + }; optind = 0; opterr = 0; /* initialize getopt */ while (1) { - static struct option long_options[] = { - {"rraindex", required_argument, 0, 129}, - {0, 0, 0, 0} - }; int option_index = 0; int opt; @@ -65,6 +65,7 @@ time_t rrd_first_r( rrd_t rrd; rrd_file_t *rrd_file; + rrd_init(&rrd); rrd_file = rrd_open(filename, &rrd, RRD_READONLY); if (rrd_file == NULL) { goto err_free;