[Privoxy-commits] [privoxy] 08/46: privoxy-log-parser.pl: Let highlight_request_line() tolerate 'Failed reading chunked client body'

User Git git at git.privoxy.org
Sun Feb 21 15:10:30 UTC 2021


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit 3f497807574800db9a12858b51c7983c969386db
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Fri Feb 5 05:27:38 2021 +0100

    privoxy-log-parser.pl: Let highlight_request_line() tolerate 'Failed reading chunked client body'
---
 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 ed574c7f..f87580b9 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -644,7 +644,7 @@ sub highlight_request_line($) {
     my ($method, $url, $http_version);
 
     #GET http://images.sourceforge.net/sfx/icon_warning.gif HTTP/1.1
-    if ($rl =~ m/Invalid request/) {
+    if ($rl =~ m/Invalid request/ or $rl =~ m/Failed reading chunked client body/) {
 
         $rl = h('invalid-request') . $rl . h('Standard');
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list