]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: stats: fix minor typo fix in stats_dump_errors_to_buffer()
authorOlivier Doucet <webmaster@ajeux.com>
Mon, 8 Sep 2014 09:23:00 +0000 (11:23 +0200)
committerWilly Tarreau <w@1wt.eu>
Thu, 11 Sep 2014 05:18:37 +0000 (07:18 +0200)
Remove the space before the colon to match the format used in the frontend.

src/dumpstats.c

index 3855e09b4f3170707ce351121bf34c412a1ece5e..ebf66ecac55b13c5d91979ff62a99e4047f22457 100644 (file)
@@ -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);