receive_chunked_client_request_body(): Fix language of an error message
authorFabian Keil <fk@fabiankeil.de>
Sat, 23 Jan 2021 12:55:07 +0000 (13:55 +0100)
committerFabian Keil <fk@fabiankeil.de>
Sat, 23 Jan 2021 15:40:28 +0000 (16:40 +0100)
jcc.c

diff --git a/jcc.c b/jcc.c
index c40c30d..8c34236 100644 (file)
--- a/jcc.c
+++ b/jcc.c
@@ -1553,7 +1553,8 @@ static jb_err receive_chunked_client_request_body(struct client_state *csp)
       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
       if (len <= 0)
       {
       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
       if (len <= 0)
       {
-         log_error(LOG_LEVEL_ERROR, "Read the client body failed: %E");
+         log_error(LOG_LEVEL_ERROR,
+            "Reading the client body failed: %E");
          break;
       }
       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
          break;
       }
       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))