From: Olivier Doucet Date: Mon, 8 Sep 2014 09:23:00 +0000 (+0200) Subject: MINOR: stats: fix minor typo fix in stats_dump_errors_to_buffer() X-Git-Tag: v1.6-dev1~318 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08afdcb47bc39c071787f8fc2066776e1c5e8607;p=thirdparty%2Fhaproxy.git MINOR: stats: fix minor typo fix in stats_dump_errors_to_buffer() Remove the space before the colon to match the format used in the frontend. --- diff --git a/src/dumpstats.c b/src/dumpstats.c index 3855e09b4f..ebf66ecac5 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -6045,7 +6045,7 @@ static int stats_dump_errors_to_buffer(struct stream_interface *si) break; case 1: chunk_appendf(&trash, - " backend %s (#%d) : invalid response\n" + " backend %s (#%d): invalid response\n" " frontend %s (#%d)", appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid, es->oe->id, es->oe->uuid);