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 :-)
This commit is contained in:
Willy Tarreau 2019-05-22 11:36:54 +02:00
parent ca2a3cc8d5
commit 0a7a4fbbc8
1 changed files with 1 additions and 1 deletions

View 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",
};