From 0a7a4fbbc833bb6ccb2b9cfed964a5a1f5af7e6b Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 22 May 2019 11:36:54 +0200 Subject: [PATCH] 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 :-) --- src/mux_h1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", };