commit | 0a7a4fbbc833bb6ccb2b9cfed964a5a1f5af7e6b | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed May 22 11:36:54 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed May 22 11:50:48 2019 +0200 |
tree | c8f1d47b1ebb828d357657198013ddec20dd6503 | |
parent | ca2a3cc8d5c7f8322e2d2d3418322fa7579beae9 [diff] |
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 dfe4d3f..918985e 100644 --- a/src/mux_h1.c +++ b/src/mux_h1.c
@@ -2390,7 +2390,7 @@ .show_fd = h1_show_fd, .reset = h1_reset, .flags = MX_FL_HTX, - .name = "h1", + .name = "H1", };