From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 14 Jun 2009 14:37:08 +0000 (+0000)
Subject: In case of connection timeouts or missing server data, use a Last-Modified date in... 
X-Git-Tag: v_3_0_14~101
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/user-manual/static/@default-cgi@show-url-info?a=commitdiff_plain;h=2942491e2f149f232fc55b984bbf4aa93621eb90;p=privoxy.git

In case of connection timeouts or missing server data, use a Last-Modified date in the past as well.
---

diff --git a/cgi.c b/cgi.c
index 5c260864..526381fc 100644
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-const char cgi_rcs[] = "$Id: cgi.c,v 1.123 2009/06/11 11:49:11 fabiankeil Exp $";
+const char cgi_rcs[] = "$Id: cgi.c,v 1.124 2009/06/12 11:03:03 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/cgi.c,v $
@@ -1622,7 +1622,9 @@ struct http_response *finish_http_response(const struct client_state *csp, struc
       if (!err) err = enlist_unique_header(rsp->headers, "Date", buf);
       if (!strncmpic(rsp->status, "403", 3)
        || !strncmpic(rsp->status, "404", 3)
-       || !strncmpic(rsp->status, "503", 3))
+       || !strncmpic(rsp->status, "502", 3)
+       || !strncmpic(rsp->status, "503", 3)
+       || !strncmpic(rsp->status, "504", 3))
       {
          if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", "Wed, 08 Jun 1955 12:00:00 GMT");
       }