From 54067e9d3891a4566d5796d0205c46d9e167571e Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 19 Jun 2020 08:47:30 +0200 Subject: [PATCH] CONTRIB: debug: add the missing flags CO_FL_SAFE_LIST and CO_FL_IDLE_LIST As often when flags are added they're not updated here. These ones were missing. They're 2.2 only so no backport is needed. --- contrib/debug/flags.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/debug/flags.c b/contrib/debug/flags.c index e1dfee9785..e958f97d4f 100644 --- a/contrib/debug/flags.c +++ b/contrib/debug/flags.c @@ -165,6 +165,8 @@ void show_conn_flags(unsigned int f) SHOW_FLAG(f, CO_FL_WAIT_ROOM); SHOW_FLAG(f, CO_FL_XPRT_READY); SHOW_FLAG(f, CO_FL_CTRL_READY); + SHOW_FLAG(f, CO_FL_IDLE_LIST); + SHOW_FLAG(f, CO_FL_SAFE_LIST); if (f) { printf("EXTRA(0x%08x)", f); -- 2.47.3