[Privoxy-commits] [privoxy] 09/13: receive_and_send_encrypted_post_data(): Add periods to a couple of log messages

User Git git at git.privoxy.org
Fri May 6 10:39:37 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 b55bdc6ca9363694aedace28f111a9b5c504a25f
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu Apr 21 12:10:01 2022 +0200

    receive_and_send_encrypted_post_data(): Add periods to a couple of log messages
---
 jcc.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/jcc.c b/jcc.c
index 43d9accf..ecb27b9d 100644
--- a/jcc.c
+++ b/jcc.c
@@ -2371,7 +2371,7 @@ static int receive_and_send_encrypted_post_data(struct client_state *csp)
          /* XXX: Does this actually happen? */
          break;
       }
-      log_error(LOG_LEVEL_CONNECT, "Forwarding %d bytes of encrypted request body",
+      log_error(LOG_LEVEL_CONNECT, "Forwarding %d bytes of encrypted request body.",
          len);
       len = ssl_send_data(&(csp->ssl_server_attr), buf, (size_t)len);
       if (len == -1)
@@ -2386,13 +2386,13 @@ static int receive_and_send_encrypted_post_data(struct client_state *csp)
          }
          if (csp->expected_client_content_length == 0)
          {
-            log_error(LOG_LEVEL_CONNECT, "Forwarded the last %d bytes", len);
+            log_error(LOG_LEVEL_CONNECT, "Forwarded the last %d bytes.", len);
             break;
          }
       }
    }
 
-   log_error(LOG_LEVEL_CONNECT, "Done forwarding encrypted request body");
+   log_error(LOG_LEVEL_CONNECT, "Done forwarding encrypted request body.");
 
    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