From b8c75c0cb4d606a624276a71732439214d028727 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 26 Mar 2021 17:19:20 +0100 Subject: [PATCH] receive_and_send_encrypted_post_data(): Improve a log message to make the origin more clear --- jcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index 26fc6304..f4dc57dc 100644 --- a/jcc.c +++ b/jcc.c @@ -2385,7 +2385,7 @@ static int receive_and_send_encrypted_post_data(struct client_state *csp) max_bytes_to_read = (int)csp->expected_client_content_length; } log_error(LOG_LEVEL_CONNECT, - "Waiting for up to %d bytes of request body from the client.", + "Prepared to read up to %d bytes of encrypted request body from the client.", max_bytes_to_read); len = ssl_recv_data(&(csp->ssl_client_attr), buf, (unsigned)max_bytes_to_read); -- 2.39.2