]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: mux-h1: use "H1" and not "h1" as the mux's name
authorWilly Tarreau <w@1wt.eu>
Wed, 22 May 2019 09:36:54 +0000 (11:36 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 22 May 2019 09:50:48 +0000 (11:50 +0200)
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 :-)

src/mux_h1.c

index dfe4d3f661078907609018e68e1466ea36101ca4..918985e3ab5dfec0287813dfebc021c096a0d241 100644 (file)
@@ -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",
 };