]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: debug: Remove flags CO_FL_SOCK_WR_ENA/CO_FL_SOCK_RD_ENA
authorChristopher Faulet <cfaulet@haproxy.com>
Tue, 16 Jul 2019 12:56:23 +0000 (14:56 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Fri, 19 Jul 2019 07:24:12 +0000 (09:24 +0200)
These flags were removed by the commit 03abf2d31 ("MEDIUM: connections: Remove
CONN_FL_SOCK*").

This patch may be backported to 2.0.

contrib/debug/flags.c

index 1a17c7fefd994fbad0c245baf5baa319be4879d5..08ca054f9cff33d8b683568ba514522cc84ca6e0 100644 (file)
@@ -141,10 +141,8 @@ void show_conn_flags(unsigned int f)
        SHOW_FLAG(f, CO_FL_CTRL_READY);
        SHOW_FLAG(f, CO_FL_CURR_WR_ENA);
        SHOW_FLAG(f, CO_FL_XPRT_WR_ENA);
-       SHOW_FLAG(f, CO_FL_SOCK_WR_ENA);
        SHOW_FLAG(f, CO_FL_CURR_RD_ENA);
        SHOW_FLAG(f, CO_FL_XPRT_RD_ENA);
-       SHOW_FLAG(f, CO_FL_SOCK_RD_ENA);
 
        if (f) {
                printf("EXTRA(0x%08x)", f);