X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_lastupdate.c;h=1546f6a148237abfe28ee3af68df3bd02f72b955;hp=120cf17f5baf6136d085fa2d674b87e1a46310ee;hb=d4110e29da41ce702bcc3327e86768c6f266915e;hpb=ac630adec930653637199258efd99024d49325c7 diff --git a/src/rrd_lastupdate.c b/src/rrd_lastupdate.c index 120cf17..1546f6a 100644 --- a/src/rrd_lastupdate.c +++ b/src/rrd_lastupdate.c @@ -62,41 +62,9 @@ int rrd_lastupdate (int argc, char **argv) return (-1); } - if (opt_daemon == NULL) - { - char *temp; - - temp = getenv (ENV_RRDCACHED_ADDRESS); - if (temp != NULL) - { - opt_daemon = strdup (temp); - if (opt_daemon == NULL) - { - rrd_set_error("strdup failed."); - return (-1); - } - } - } - - if (opt_daemon != NULL) - { - status = rrdc_connect (opt_daemon); - if (status != 0) - { - rrd_set_error ("rrdc_connect failed with status %i.", status); - return (-1); - } - - status = rrdc_flush (argv[optind]); - if (status != 0) - { - rrd_set_error ("rrdc_flush (%s) failed with status %i.", - argv[optind], status); - return (-1); - } - - rrdc_disconnect (); - } /* if (opt_daemon) */ + status = rrdc_flush_if_daemon(opt_daemon, argv[optind]); + if (opt_daemon) free (opt_daemon); + if (status) return (-1); status = rrd_lastupdate_r (argv[optind], &last_update, &ds_count, &ds_names, &last_ds); @@ -131,6 +99,7 @@ int rrd_lastupdate_r(const char *filename, rrd_t rrd; rrd_file_t *rrd_file; + rrd_init(&rrd); rrd_file = rrd_open(filename, &rrd, RRD_READONLY); if (rrd_file == NULL) { rrd_free(&rrd);