From: Tobias Oetiker Date: Sun, 29 Jun 2008 16:24:26 +0000 (+0000) Subject: add filename to illegal update message -- he at uninett.no X-Git-Tag: 1.2.29~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16f324e34a382920e28f911e2e19e31795f2e02f;p=thirdparty%2Frrdtool-1.x.git add filename to illegal update message -- he at uninett.no git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@1442 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_update.c b/src/rrd_update.c index 147e833d..261255d7 100644 --- a/src/rrd_update.c +++ b/src/rrd_update.c @@ -533,9 +533,9 @@ _rrd_update(const char *filename, const char *tmplt, int argc, const char **argv if(current_time < rrd.live_head->last_up || (current_time == rrd.live_head->last_up && (long)current_time_usec <= (long)rrd.live_head->last_up_usec)) { - rrd_set_error("illegal attempt to update using time %ld when " + rrd_set_error("%s: illegal attempt to update using time %ld when " "last update time is %ld (minimum one second step)", - current_time, rrd.live_head->last_up); + filename, current_time, rrd.live_head->last_up); free(step_start); break; }