From 811af721ac33e5b05471c88f4026e636e78766db Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Thu, 29 Apr 2010 16:06:46 +1200 Subject: [PATCH] Ignore chunked encoding header. --- testing/normalise_result | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/normalise_result b/testing/normalise_result index b6cc8276..afea7fcc 100755 --- a/testing/normalise_result +++ b/testing/normalise_result @@ -29,6 +29,10 @@ while( ) { $_ = ""; }; + /^Transfer-Encoding:/ && do { + $_ = ""; + }; + /^Vary: / && do { $_ = ""; };