X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_lastupdate.c;h=62e3b8ba3ac09758c76b335a4688dc35dec96e98;hp=120cf17f5baf6136d085fa2d674b87e1a46310ee;hb=a12627275ff8487174cbb907a066f62a00b6ae44;hpb=ac630adec930653637199258efd99024d49325c7 diff --git a/src/rrd_lastupdate.c b/src/rrd_lastupdate.c index 120cf17..62e3b8b 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);