From dddfec542802c00ad54455d0facf2293d9f8e5dd Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sat, 9 Apr 2022 11:37:35 +0200 Subject: [PATCH] CLEANUP: connection: reduce the with of the mux dump output In "haproxy -vv" we produce a list of available muxes with their capabilities, but that list is often quite large for terminals due to excess of spaces, so let's reduce them a bit to make the output more readable. --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 7d41471e5..2302fd9ec 100644 --- a/src/connection.c +++ b/src/connection.c @@ -1605,7 +1605,7 @@ void list_mux_proto(FILE *out) else side = "NONE"; - fprintf(out, " %15s : mode=%-10s side=%-8s mux=%-8s flags=", + fprintf(out, " %10s : mode=%-5s side=%-6s mux=%-5s flags=", (proto.len ? proto.ptr : ""), mode, side, item->mux->name); done = 0;