[mod-xhtml-neg-cvs] mod_xhtml_neg-2.0 mod_xhtml_neg.c,1.21,1.22
Brought to you by:
run2000
From: <ru...@us...> - 2004-04-02 09:21:36
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3361 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-2.0/mod_xhtml_neg.c,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** mod_xhtml_neg.c 1 Apr 2004 11:11:00 -0000 1.21 --- mod_xhtml_neg.c 2 Apr 2004 09:09:30 -0000 1.22 *************** *** 1436,1442 **** r->no_cache = 1; } - } else { - set_vary_header(r); } return DECLINED; --- 1436,1441 ---- r->no_cache = 1; } } + set_vary_header(r); return DECLINED; |