]> git.ipfire.org Git - thirdparty/rrdtool-1.x.git/commit
Allow empty imginfo format string 553/head
authorJulien Thomas <jthomas@exosec.fr>
Thu, 6 Nov 2014 00:36:14 +0000 (01:36 +0100)
committerJulien Thomas <jthomas@exosec.fr>
Thu, 6 Nov 2014 00:36:14 +0000 (01:36 +0100)
commit27a15e5d9f0b49b2670fb8e2aaa978ed858b5e8e
treecbc61a6684c666669f0bf4a560b6c6b3bb907c3a
parentf09fbd3bbfba02528419e5fb7c6315ff94304546
Allow empty imginfo format string

Empty -f|--imginfo used to be very usefull to print data as text format
on stdout. It was allowed up to 1.4.7 and was particularly interesting
because there was no filename/width/height printed out. The "feature"
was broken in 1.4.8 by the addition of a format check on the imginfo
value. The recent rework based on regexp still breaks it. Adding it back
would preserve compatibility on scripts/parser eating rrdtool graph
/dev/null -f '' output.

Before :

[root@nagios-2b ~]# rrdtool graph /dev/null -f "" --start -1d \
    DEF:d=/var/lib/rrd/nagios-2b/load.rrd:load5:AVERAGE \
    VDEF:v=d,AVERAGE \
    PRINT:v:%.6lf
5.284605

After :

[root@nagios-2b ~]# rrdtool graph /dev/null -f "" --start -1d \
    DEF:d=/var/lib/rrd/nagios-2b/load.rrd:load5:AVERAGE \
    VDEF:v=d,AVERAGE \
    PRINT:v:%.6lf
ERROR: bad format for imginfo
src/rrd_graph.c