X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Frrd_last.c;h=517b65aca029e966154b4221f40d82bde555d26f;hb=a12627275ff8487174cbb907a066f62a00b6ae44;hp=aa9b917385a6da4da6ff555ca41bbe47f424c34e;hpb=ac630adec930653637199258efd99024d49325c7;p=rrdtool.git diff --git a/src/rrd_last.c b/src/rrd_last.c index aa9b917..517b65a 100644 --- a/src/rrd_last.c +++ b/src/rrd_last.c @@ -14,6 +14,7 @@ time_t rrd_last( char **argv) { char *opt_daemon = NULL; + int status; optind = 0; opterr = 0; /* initialize getopt */ @@ -57,43 +58,9 @@ time_t rrd_last( 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) - { - int status; - - 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); return (rrd_last_r (argv[optind])); }