[Privoxy-commits] [privoxy] 01/04: receive_encrypted_request_headers(): Add periods to a couple of log messages
User Git
git at git.privoxy.org
Tue Dec 19 11:53:12 CET 2023
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit ebce9f65e40e1e256e89338ed5185321055bf4c0
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Nov 26 01:16:39 2023 +0100
receive_encrypted_request_headers(): Add periods to a couple of log messages
---
jcc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/jcc.c b/jcc.c
index 0a6c64e2..b7f50fa8 100644
--- a/jcc.c
+++ b/jcc.c
@@ -2510,12 +2510,12 @@ static jb_err receive_encrypted_request_headers(struct client_state *csp)
do
{
- log_error(LOG_LEVEL_HEADER, "Waiting for encrypted client headers");
+ log_error(LOG_LEVEL_HEADER, "Waiting for encrypted client headers.");
if (!is_ssl_pending(&(csp->ssl_client_attr)) &&
!data_is_available(csp->cfd, csp->config->socket_timeout))
{
log_error(LOG_LEVEL_CONNECT,
- "Socket %d timed out while waiting for client headers", csp->cfd);
+ "Socket %d timed out while waiting for client headers.", csp->cfd);
return JB_ERR_PARSE;
}
len = ssl_recv_data(&(csp->ssl_client_attr),
@@ -2523,7 +2523,7 @@ static jb_err receive_encrypted_request_headers(struct client_state *csp)
if (len == 0)
{
log_error(LOG_LEVEL_CONNECT,
- "Socket %d closed while waiting for client headers", csp->cfd);
+ "Socket %d closed while waiting for client headers.", csp->cfd);
return JB_ERR_PARSE;
}
if (len == -1)
@@ -2537,7 +2537,7 @@ static jb_err receive_encrypted_request_headers(struct client_state *csp)
p = strstr(csp->client_iob->cur, "\r\n\r\n");
} while (p == NULL);
- log_error(LOG_LEVEL_HEADER, "Encrypted headers received completely");
+ log_error(LOG_LEVEL_HEADER, "Encrypted headers received completely.");
return JB_ERR_OK;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list