[Privoxy-commits] [privoxy] 05/23: Privoxy-Log-Parser: Don't highlight the trailing period in a log message
User Git
git at git.privoxy.org
Thu Jan 1 15:56:02 CET 2026
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit d4b121f1fb91329a592c525976cafde1901b1a9e
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Dec 28 17:21:21 2025 +0100
Privoxy-Log-Parser: Don't highlight the trailing period in a log message
Fixes 3352cddf.
---
tools/privoxy-log-parser.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index f1052c01..d45c4932 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1539,7 +1539,7 @@ sub handle_loglevel_connect($) {
# OK
$c = highlight_matched_host($c, '(?<=connection from )[^ ]*');
$c = highlight_matched_pattern($c, 'Number', '(?<=socket )\d+');
- $c = highlight_matched_host($c, '(?<=through )[^ ]*');
+ $c = highlight_matched_host($c, '(?<=through )[^ ]*(?=\.$)');
} elsif ($c =~ m/^Closing client socket/) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list