From 3504a01cb4a2a070943a7de5efcba684542a4ccd Mon Sep 17 00:00:00 2001 From: willy tarreau Date: Sun, 14 May 2006 23:20:07 +0200 Subject: [PATCH] [DEBUG] state names were shifted due to missing PEND state. --- haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 /*********************************************************************/ -- 2.47.3