From: Cyril Bonté Date: Sun, 11 May 2014 21:10:18 +0000 (+0200) Subject: BUG/MINOR: stats: fix a typo on a closing tag for a server tracking another one X-Git-Tag: v1.5-dev26~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5de76a25b089aabb9cf79c1cdecaf9d9f5cf8a2;p=thirdparty%2Fhaproxy.git BUG/MINOR: stats: fix a typo on a closing tag for a server tracking another one The "via" column includes a link to the tracked server but instead of closing the link with a tag, a new tag is opened. This typo should also be backported to 1.4 --- diff --git a/src/dumpstats.c b/src/dumpstats.c index e0c21b6b99..b26ec25405 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -2984,11 +2984,11 @@ static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, in else if (sv != ref) { if (sv->state & SRV_MAINTAIN) chunk_appendf(&trash, - "", + "", ref->proxy->id, ref->id); else chunk_appendf(&trash, - "via %s/%s", + "via %s/%s", ref->proxy->id, ref->id, ref->proxy->id, ref->id); } else