From: willy tarreau Date: Sun, 14 May 2006 21:20:07 +0000 (+0200) Subject: [DEBUG] state names were shifted due to missing PEND state. X-Git-Tag: v1.2.14~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3504a01cb4a2a070943a7de5efcba684542a4ccd;p=thirdparty%2Fhaproxy.git [DEBUG] state names were shifted due to missing PEND state. --- diff --git a/haproxy.c b/haproxy.c index 0832cdaac0..acc97c65dc 100644 --- a/haproxy.c +++ b/haproxy.c @@ -917,7 +917,7 @@ static int stats_tsk_lsrch, stats_tsk_rsrch, /*********************************************************************/ #ifdef DEBUG_FULL static char *cli_stnames[5] = {"HDR", "DAT", "SHR", "SHW", "CLS" }; -static char *srv_stnames[8] = {"IDL", "PND", "CON", "HDR", "DAT", "SHR", "SHW", "CLS" }; +static char *srv_stnames[7] = {"IDL", "CON", "HDR", "DAT", "SHR", "SHW", "CLS" }; #endif /*********************************************************************/