From 846115a986a3101eef962034344bf35cf4a3d313 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 10 Mar 2021 17:13:08 +0100 Subject: [PATCH] handle_established_connection(): Fix a comment --- jcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index 3f42be1b..648fd455 100644 --- a/jcc.c +++ b/jcc.c @@ -3171,7 +3171,7 @@ static void handle_established_connection(struct client_state *csp) n = select((int)maxfd + 1, &rfds, NULL, NULL, &timeout); #endif /* def HAVE_POLL */ - /*server or client not responding in timeout */ + /* Server or client not responding in timeout */ if (n == 0) { log_error(LOG_LEVEL_CONNECT, "Socket timeout %d reached: %s", -- 2.39.2