From f0316b2966b8650ec65df99f7b41bc047b1c8fd3 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Thu, 24 Oct 2002 12:56:36 +0000 Subject: [PATCH] Bug fixed: I don't know what the bug was exactly, but it happened that the connection was not closed when using some HTTP 1.1 clients (e.g. wget) --- helm/http_getter/http_getter.pl.in | 1 + 1 file changed, 1 insertion(+) diff --git a/helm/http_getter/http_getter.pl.in b/helm/http_getter/http_getter.pl.in index 9fd957c39..e9d1f4a3e 100755 --- a/helm/http_getter/http_getter.pl.in +++ b/helm/http_getter/http_getter.pl.in @@ -819,6 +819,7 @@ sub answer { $res->push_header("Pragma" => "no-cache"); $res->push_header("Expires" => "0"); $c->send_response($res); + $c->force_last_request(); } sub html_nice_answer { -- 2.39.2