summaryrefslogtreecommitdiffstatsabout
diff options
context:
space:
mode:
-rw-r--r--Makefile.in4
-rw-r--r--mod_log_sql.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 71622b8..5902fab 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -9,7 +9,7 @@ HEADERS =
9 9
10CFLAGS = -Wc,-Wall -Wc,-Werror -Wc,-fno-strict-aliasing 10CFLAGS = -Wc,-Wall -Wc,-Werror -Wc,-fno-strict-aliasing
11 11
12INCLUDES = 12INCLUDES = -I/usr/include/mysql
13 13
14LDADD = 14LDADD =
15 15
@@ -115,7 +115,7 @@ $(builddir)/.deps: depend
115 115
116depend: $(SOURCES) $(HEADERS) 116depend: $(SOURCES) $(HEADERS)
117 if test -n "`ls $(srcdir)/*.c 2> /dev/null`"; then \ 117 if test -n "`ls $(srcdir)/*.c 2> /dev/null`"; then \
118 $(CC) -MM -MT $(TARGET) -I@APACHE_INCDIR@ $(srcdir)/*.c > $(builddir)/.deps || true; \ 118 $(CC) -MM -MT $(TARGET) -I@APACHE_INCDIR@ $(INCLUDES) $(srcdir)/*.c > $(builddir)/.deps || true; \
119 fi 119 fi
120 120
121include $(builddir)/.deps 121include $(builddir)/.deps
diff --git a/mod_log_sql.c b/mod_log_sql.c
index 82d0483..60d2b33 100644
--- a/mod_log_sql.c
+++ b/mod_log_sql.c
@@ -1,4 +1,4 @@
1 1/* $Header: /home/cvs/mod_log_sql/mod_log_sql.c,v 1.2 2003/12/21 17:45:51 urkle Exp $ */
2/* --------* 2/* --------*
3 * DEFINES * 3 * DEFINES *
4 * --------*/ 4 * --------*/
@@ -75,7 +75,7 @@ typedef const char *(*item_key_func) (request_rec *, char *);
75 * Each child process has its own segregated copy of this structure. 75 * Each child process has its own segregated copy of this structure.
76 */ 76 */
77typedef struct { 77typedef struct {
78 array_header *transfer_ignore_list; 78 apr_array_t *transfer_ignore_list;
79 array_header *transfer_accept_list; 79 array_header *transfer_accept_list;
80 array_header *remhost_ignore_list; 80 array_header *remhost_ignore_list;
81 array_header *notes_list; 81 array_header *notes_list;