dgaudet 97/07/19 15:16:46
Modified: src/modules/proxy proxy_cache.c Log: Make proxy compile on unix hosts again -- there was a double include of conf.h. Revision Changes Path 1.20 +1 -3 apache/src/modules/proxy/proxy_cache.c Index: proxy_cache.c =================================================================== RCS file: /export/home/cvs/apache/src/modules/proxy/proxy_cache.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C3 -r1.19 -r1.20 *** proxy_cache.c 1997/07/19 20:16:21 1.19 --- proxy_cache.c 1997/07/19 22:16:45 1.20 *************** *** 52,60 **** /* Cache and garbage collection routines for Apache proxy */ - #include "conf.h" - #include "md5.h" - #include "mod_proxy.h" #include "http_log.h" #include "http_main.h" --- 52,57 ---- *************** *** 65,70 **** --- 62,68 ---- #include <utime.h> #endif /* WIN32 */ #include "multithread.h" + #include "md5.h" #define abs(c) ((c) >= 0 ? (c) : -(c))