[Privoxy-commits] [privoxy] 01/04: receive_chunked_client_request_body(): Fix language of an error message
User Git
git at git.privoxy.org
Sat Jan 23 15:38:47 UTC 2021
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 56be026372e759ad975934dd4c62bbd81027ec02
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sat Jan 23 13:55:07 2021 +0100
receive_chunked_client_request_body(): Fix language of an error message
---
jcc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/jcc.c b/jcc.c
index c40c30dd..8c34236f 100644
--- 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))
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list