You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Rob Hartill <ha...@ooo.lanl.gov> on 1995/08/02 05:09:54 UTC

pragma no-cache


I think this might fix it....

http_protocol.c

          if (status == USE_LOCAL_COPY) 
             return;


should be

          if (status == USE_LOCAL_COPY) {
             fprintf (c->client, "\015\012");
             return;
          }



We appear not to be adding the end of header \r\n for a 304 response...
Only the CERN proxy seems to mind, but it should be fixed. Sure beats
the Pragma nonsense.


rob