[mod-xhtml-neg-cvs] mod_xhtml_neg mod_xhtml_neg.c,1.34,1.35
Brought to you by:
run2000
From: <ru...@us...> - 2004-04-02 09:22:46
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3546 Modified Files: mod_xhtml_neg.c Log Message: Always set a Vary header regardless of the HTTP version. This deals with some proxy servers that aren't smart about dealing with 1.0 requests and responses. Index: mod_xhtml_neg.c =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg/mod_xhtml_neg.c,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** mod_xhtml_neg.c 1 Apr 2004 10:52:34 -0000 1.34 --- mod_xhtml_neg.c 2 Apr 2004 09:10:40 -0000 1.35 *************** *** 1423,1429 **** r->no_cache = 1; } - } else { - set_vary_header(r); } return OK; --- 1423,1428 ---- r->no_cache = 1; } } + set_vary_header(r); return OK; |