From 2942491e2f149f232fc55b984bbf4aa93621eb90 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 14 Jun 2009 14:37:08 +0000 Subject: [PATCH] In case of connection timeouts or missing server data, use a Last-Modified date in the past as well. --- cgi.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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"); } -- 2.39.2