paramters in SHIFT are separated by : like everywhere else
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 3 Apr 2005 11:44:58 +0000 (11:44 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 3 Apr 2005 11:44:58 +0000 (11:44 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@335 a5681a0c-68f1-0310-ab6d-d61299d08faa

doc/rrdgraph_graph.src
src/rrd_graph_helper.c

index 9dcaf98..4d4a557 100644 (file)
 
 =item B<TICK> : I<vname> B<#> I<rrggbbaa> [ : I<fraction> [ : I<legend> ] ]
 
-=back
-
-=item B<to be implemented commands>
-
-=over 8
-
 =item B<SHIFT> : I<vname> , I<offset>
 
 =back
@@ -251,7 +245,7 @@ length of the tick mark as a fraction of the y-axis; the default value
 is 0.1 (10% of the axis). Note that the color specification is not
 optional.
 
-=item B<SHIFT> : I<vname> , I<offset>
+=item B<SHIFT> : I<vname> : I<offset>
 
 Using this command B<RRDtool> will graph the following elements
 with the specified offset.  For instance, you can specify an
index e771221..55185c9 100644 (file)
@@ -175,7 +175,7 @@ rrd_parse_shift(char *line, unsigned int *eaten, graph_desc_t *gdp, image_desc_t
        char    *l = strdup(line + *eaten), *p;
        int     rc = 1;
 
-       p = strchr(l, ',');
+       p = strchr(l, ':');
        if (p == NULL) {
                rrd_set_error("Invalid SHIFT syntax");
                goto out;