From da09acd24f3c3e6e7dac0544d0bda586ede44761 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Wed, 8 Apr 2026 19:24:07 +0300 Subject: [PATCH] 1 --- src/etcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etcp.c b/src/etcp.c index ad5a1ab..d895a7e 100644 --- a/src/etcp.c +++ b/src/etcp.c @@ -700,7 +700,7 @@ static void etcp_conn_process_send_queue(struct ETCP_CONN* etcp) {// вызыв char l_status[256]={0}; struct ETCP_LINK* link = etcp->links; while (link) { - snprintf (l_status+strlen(l_status), 256-strlen(l_status), "L%d%d%s,%s ", link->recv_keepalive, link->remote_keepalive, (link->shaper_timer==0)?"wait":"rdy", link->send_blocked_inflight?"inf_block":"rdy"); + snprintf (l_status+strlen(l_status), 256-strlen(l_status), "L%d%d%s,%s ", link->recv_keepalive, link->remote_keepalive, (link->shaper_timer)?"wait":"rdy", link->send_blocked_inflight?"inf_block":"rdy"); link = link->next; }