summaryrefslogtreecommitdiffstatsabout
path: root/apache20.h
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-04-17 15:14:12 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-04-17 15:14:12 (GMT)
commit0eb391e9f9e44f15c03f1d8d5414c806413f50fb (patch)
tree256ecb77d74fa09b716f4497b6893a3f6f851284 /apache20.h
parent8ee3532f8b6c454f2600e6c3b47362d22b7cf536 (diff)
beginnings of postgresql driver integrated into autoconf
removed log_error from apache20.h (aliased to ap_log_rerror)
Diffstat (limited to 'apache20.h')
-rw-r--r--apache20.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/apache20.h b/apache20.h
index a20c695..9d87588 100644
--- a/apache20.h
+++ b/apache20.h
@@ -20,17 +20,6 @@
20 20
21#include "util_time.h" 21#include "util_time.h"
22 22
23/*static void log_error(char *file, int line, int level, const server_rec *s, const char *fmt, ...) __attribute__ ((format (printf, 5,6)));
24static inline void log_error(char *file, int line, int level, const server_rec *s, const char *fmt, ...)
25{
26 static char buff[MAX_STRING_LEN];
27 va_list args;
28 va_start(args, fmt);
29 apr_vsnprintf(buff,MAX_STRING_LEN, fmt,args);
30 ap_log_error(file,line,level,0,s,"%s",buff);
31 va_end(args);
32}*/
33
34#define log_error ap_log_error 23#define log_error ap_log_error
35 24
36#endif /* APACHE20_H */ 25#endif /* APACHE20_H */