diff options
author | Edward Rudd | 2004-07-16 01:33:59 +0000 |
---|---|---|
committer | Edward Rudd | 2004-07-16 01:33:59 +0000 |
commit | 197e405e8e8ae8e11bb251305043810c7fa93e4e (patch) | |
tree | c601e247a7073c6385cf739d96de7399c31b5feb /mod_log_sql_mysql.c | |
parent | 21122f1bb734aa00fc14564d801ea9dc4804c793 (diff) |
fixed another segfault related to the mysql escaping function (forcepreserve bug)
included win32 build bat files in distribution
separated -Werror to a configure time option (--enable-maintainer)
update autogen to use autoconf 2.57, aclocal 1.7
included pgsql and dbi module source in distribution.
setup autodetection in configure script for databases.
Diffstat (limited to 'mod_log_sql_mysql.c')
-rw-r--r-- | mod_log_sql_mysql.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod_log_sql_mysql.c b/mod_log_sql_mysql.c index f058110..fd1668a 100644 --- a/mod_log_sql_mysql.c +++ b/mod_log_sql_mysql.c | |||
@@ -247,6 +247,7 @@ static logsql_table_ret log_sql_mysql_create(request_rec *r, logsql_dbconnection | |||
247 | 247 | ||
248 | static const char *supported_drivers[] = {"mysql",NULL}; | 248 | static const char *supported_drivers[] = {"mysql",NULL}; |
249 | static logsql_dbdriver mysql_driver = { | 249 | static logsql_dbdriver mysql_driver = { |
250 | "mysql", | ||
250 | supported_drivers, | 251 | supported_drivers, |
251 | log_sql_mysql_connect, /* open DB connection */ | 252 | log_sql_mysql_connect, /* open DB connection */ |
252 | log_sql_mysql_close, /* close DB connection */ | 253 | log_sql_mysql_close, /* close DB connection */ |