From: Claudio Sacerdoti Coen Date: Thu, 24 Oct 2002 12:56:36 +0000 (+0000) Subject: Bug fixed: I don't know what the bug was exactly, but it happened that X-Git-Tag: BEFORE_METADATA_FOR_SORT_AND_REL~14 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=f0316b2966b8650ec65df99f7b41bc047b1c8fd3;p=helm.git 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) --- 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 {