receive_and_send_encrypted_post_data(): Add periods to a couple of log messages
authorFabian Keil <fk@fabiankeil.de>
Thu, 21 Apr 2022 10:10:01 +0000 (12:10 +0200)
committerFabian Keil <fk@fabiankeil.de>
Fri, 6 May 2022 10:40:01 +0000 (12:40 +0200)
jcc.c

diff --git a/jcc.c b/jcc.c
index 43d9acc..ecb27b9 100644 (file)
--- 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;