Fix missing report of TCP_DENIED_REPLY messages. Thanks to Jeff Gebhardt for the report.

This commit is contained in:
Gilles Darold 2017-03-28 19:36:00 +02:00
parent c52568af08
commit a8bd89bc9d

View File

@ -1369,7 +1369,7 @@ sub _parse_file_part
$code = 'HIT';
} elsif ($code =~ m#(MISS|MODIFIED|TUNNEL)[:/]#) {
$code = 'MISS';
} elsif ($code =~ m#(DENIED|REDIRECT)[:/]#) {
} elsif ($code =~ m#(DENIED|DENIED_REPLY|REDIRECT)[:/]#) {
$code = 'DENIED';
} else {
next;