Add missing colon in regex.
authorFabian Keil <fk@fabiankeil.de>
Thu, 25 Dec 2008 19:54:28 +0000 (19:54 +0000)
committerFabian Keil <fk@fabiankeil.de>
Thu, 25 Dec 2008 19:54:28 +0000 (19:54 +0000)
tools/privoxy-log-parser.pl

index fde6070..9c22122 100755 (executable)
@@ -8,7 +8,7 @@
 #
 # http://www.fabiankeil.de/sourcecode/privoxy-log-parser/
 #
-# $Id: privoxy-log-parser.pl,v 1.131 2008/12/25 18:37:07 fk Exp $
+# $Id: privoxy-log-parser.pl,v 1.132 2008/12/25 19:52:57 fk Exp $
 #
 # TODO:
 #       - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting
@@ -1488,7 +1488,7 @@ sub handle_loglevel_connect ($) {
         $c = highlight_matched_host($c, '(?<=connection to )[^\s]+');
         $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
         $c =~ s@(?<=Closing socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
-        $c =~ s@(?<=Timeout is )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+        $c =~ s@(?<=Timeout is: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
 
     } elsif ($c =~ m/^Waiting for/) {