From: Tobias Oetiker Date: Sun, 28 Apr 2002 19:13:04 +0000 (+0000) Subject: inserted PRINT checker at the wrong point ... X-Git-Tag: 1.2rc1~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b5714b26c9813bcc05c4934ec740d99237a2d13;p=thirdparty%2Frrdtool-1.x.git inserted PRINT checker at the wrong point ... git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@132 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_graph.c b/src/rrd_graph.c index 55f6cee0..89a67c08 100644 --- a/src/rrd_graph.c +++ b/src/rrd_graph.c @@ -3254,13 +3254,13 @@ int bad_format(char *fmt) { ptr++; } if (*ptr == '\0') return 1; + else if (*ptr == ' ') ptr++; + else if (*ptr == '-') ptr++; + else if (*ptr == '+') ptr++; if (*ptr == 'l') { ptr++; n++; if (*ptr == '\0') return 1; - else if (*ptr == ' ') ptr++; - else if (*ptr == '-') ptr++; - else if (*ptr == '+') ptr++; if (*ptr == 'e' || *ptr == 'f') { ptr++; } else { return 1; }