[mod-xhtml-neg-cvs] mod_xhtml_neg-2.0 mod_xhtml_neg.c,1.9,1.10
Brought to you by:
run2000
From: <ru...@us...> - 2004-03-25 10:15:26
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25105 Modified Files: mod_xhtml_neg.c Log Message: Minor const correctness fixes and other changes. Index: mod_xhtml_neg.c =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0/mod_xhtml_neg.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mod_xhtml_neg.c 25 Mar 2004 09:40:01 -0000 1.9 --- mod_xhtml_neg.c 25 Mar 2004 10:04:31 -0000 1.10 *************** *** 115,119 **** #include "http_config.h" #include "http_request.h" - #include "http_protocol.h" /* This is naughty */ --- 115,118 ---- *************** *** 121,124 **** --- 120,124 ---- #include "http_core.h" + #include "http_protocol.h" #include "http_log.h" *************** *** 1151,1155 **** /** ! * The actual content-negotiation phase of this module goes here. * * Note that due to the way we hook into the Apache handler system means --- 1151,1157 ---- /** ! * The main routine for the content-negotiation phase of this module ! * goes here. This is mainly setup, control flow and logging going on ! * here. * * Note that due to the way we hook into the Apache handler system means |