From 14a75d6ed20b27322f8764c96a24ce1c6a19bc54 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 6 Mar 2021 14:17:44 +0100 Subject: [PATCH] handle_established_connection(): Improve an error message --- jcc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jcc.c b/jcc.c index cd7bf710..7805291c 100644 --- a/jcc.c +++ b/jcc.c @@ -3539,8 +3539,8 @@ static void handle_established_connection(struct client_state *csp) (const unsigned char *) ((p != NULL) ? p : csp->iob->cur), csp->content_length, get_write_delay(csp)) < 0)) { - log_error(LOG_LEVEL_ERROR, "write modified content to " - "client over TLS/SSL failed"); + log_error(LOG_LEVEL_ERROR, + "Failed to send the modified content to the client over TLS"); freez(hdr); freez(p); mark_server_socket_tainted(csp); -- 2.39.2