[Privoxy-commits] [privoxy] 01/04: drain_and_close_socket(): Add periods to two log messages
User Git
git at git.privoxy.org
Sun Oct 16 11:36:45 CEST 2022
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 2fca5834565412650ce31d084d07a396f210eddd
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Oct 16 11:08:53 2022 +0200
drain_and_close_socket(): Add periods to two log messages
---
jbsockets.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/jbsockets.c b/jbsockets.c
index f3f5750e..e26bc62d 100644
--- a/jbsockets.c
+++ b/jbsockets.c
@@ -850,7 +850,7 @@ void drain_and_close_socket(jb_socket fd)
bytes_drained_total += bytes_drained;
if (bytes_drained_total > ARBITRARY_DRAIN_LIMIT)
{
- log_error(LOG_LEVEL_CONNECT, "Giving up draining socket %d", fd);
+ log_error(LOG_LEVEL_CONNECT, "Giving up draining socket %d.", fd);
break;
}
}
@@ -858,7 +858,7 @@ void drain_and_close_socket(jb_socket fd)
if (bytes_drained_total != 0)
{
log_error(LOG_LEVEL_CONNECT,
- "Drained %d bytes before closing socket %d", bytes_drained_total, fd);
+ "Drained %d bytes before closing socket %d.", bytes_drained_total, fd);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list