pcrs_filter_impl(): Improve wording of a log message
[privoxy.git] / 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)
       {
-         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))