From: Willy Tarreau Date: Wed, 22 May 2019 09:36:54 +0000 (+0200) Subject: CLEANUP: mux-h1: use "H1" and not "h1" as the mux's name X-Git-Tag: v2.0-dev4~18 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=0a7a4fbbc833bb6ccb2b9cfed964a5a1f5af7e6b;p=haproxy.git CLEANUP: mux-h1: use "H1" and not "h1" as the mux's name The mux's name is the only one reported in lower case in "show sess" or "haproxy -vv" while the other ones are upper case, so it loses and the other ones win :-) --- diff --git a/src/mux_h1.c b/src/mux_h1.c index dfe4d3f66..918985e3a 100644 --- a/src/mux_h1.c +++ b/src/mux_h1.c @@ -2390,7 +2390,7 @@ static const struct mux_ops mux_h1_ops = { .show_fd = h1_show_fd, .reset = h1_reset, .flags = MX_FL_HTX, - .name = "h1", + .name = "H1", };