From 7ac4648ff14080c7d5f46e7d1d54cfc85d654d1f Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 10 Mar 2012 11:15:15 +0000 Subject: [PATCH] Accept and highlight: Stopping to watch the client socket. There's already another request waiting. It's emitted by Privoxy versions before 3.0.20 and the previous commit was supposed to cover it but didn't due to a trailing space in the regex. --- tools/privoxy-log-parser.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 2ddd6da6..0a173e54 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -8,7 +8,7 @@ # # http://www.fabiankeil.de/sourcecode/privoxy-log-parser/ # -# $Id: privoxy-log-parser.pl,v 1.126 2011/12/31 14:54:05 fabiankeil Exp $ +# $Id: privoxy-log-parser.pl,v 1.127 2012/03/10 11:08:44 fabiankeil Exp $ # # TODO: # - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting @@ -1659,7 +1659,7 @@ sub handle_loglevel_connect ($) { # Waiting for up to 4999 bytes from the client. $c =~ s@(?<=up to )(\d+)@$h{'Number'}$1$h{'Standard'}@; - } elsif ($c =~ m/^Stopping to watch the client socket /) { + } elsif ($c =~ m/^Stopping to watch the client socket/) { # Stopping to watch the client socket. There's already another request waiting. # Privoxy 3.0.20 and later: -- 2.39.2