[Privoxy-commits] [privoxy] 12/13: read_https_request_body(): End more log messages with periods.

User Git git at git.privoxy.org
Fri May 6 10:39:40 UTC 2022


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit 65b3864a2dd8457d8017230cf839ae8719582783
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu May 5 17:42:36 2022 +0200

    read_https_request_body(): End more log messages with periods.
---
 jcc.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/jcc.c b/jcc.c
index 3322574f..02f6f25e 100644
--- a/jcc.c
+++ b/jcc.c
@@ -2302,7 +2302,7 @@ static int read_https_request_body(struct client_state *csp)
       if (len <= 0)
       {
          log_error(LOG_LEVEL_CONNECT,
-            "Did not receive the whole encrypted request body from %s",
+            "Did not receive the whole encrypted request body from %s.",
             csp->ip_addr_str);
          return 1;
       }
@@ -2316,13 +2316,13 @@ static int read_https_request_body(struct client_state *csp)
    if (to_read != 0)
    {
       log_error(LOG_LEVEL_CONNECT,
-         "Not enough encrypted request body has been read: expected %lu more bytes",
+         "Not enough encrypted request body has been read: expected %lu more bytes.",
          to_read);
       return 1;
    }
 
    log_error(LOG_LEVEL_CONNECT,
-      "The last %llu bytes of the encrypted request body have been read",
+      "The last %llu bytes of the encrypted request body have been read.",
       csp->expected_client_content_length);
    return 0;
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list