From 07aa6e9db94b3b5db046eddd99897a1b999247a4 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 23 Mar 2021 15:06:55 +0100 Subject: [PATCH] privoxy-log-parser: Fix typo in the --statistics output --- 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 e3d3b845..57a7f039 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -2410,7 +2410,7 @@ sub print_stats() { ")\n"; print "Client connections: " . $stats{'closed-client-connections'} . "\n"; if ($stats{'content-size-total'}) { - print "Bytes of content transfered to the client: " . $stats{'content-size-total'} . "\n"; + print "Bytes of content transferred to the client: " . $stats{'content-size-total'} . "\n"; } my $lines_printed = 0; print "Client requests per connection distribution:\n"; -- 2.39.2