diff options
author | Edward Rudd | 2004-04-29 23:11:12 +0000 |
---|---|---|
committer | Edward Rudd | 2004-04-29 23:11:12 +0000 |
commit | 211c72fce4173b76712ae36bc240ca63c4fc1e31 (patch) | |
tree | 6b775e64b874627079f9b037e5236f8dcf6e25b7 /mod_log_sql.c | |
parent | 482c6dba5db896d06099737e8a75be6a3949b492 (diff) |
win32 fixes for apache 1.3
added win32 build script
Diffstat (limited to 'mod_log_sql.c')
-rw-r--r-- | mod_log_sql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod_log_sql.c b/mod_log_sql.c index 6a80ece..294380b 100644 --- a/mod_log_sql.c +++ b/mod_log_sql.c | |||
@@ -288,7 +288,7 @@ static const char *set_server_file_slot(cmd_parms *cmd, | |||
288 | int offset = (int)(long)cmd->info; | 288 | int offset = (int)(long)cmd->info; |
289 | const char *path; | 289 | const char *path; |
290 | 290 | ||
291 | path = ap_server_root_relative(cmd->pool, arg); | 291 | path = ap_server_root_relative(cmd->pool, (char *)arg); |
292 | 292 | ||
293 | if (!path) { | 293 | if (!path) { |
294 | return apr_pstrcat(cmd->pool, "Invalid file path ", | 294 | return apr_pstrcat(cmd->pool, "Invalid file path ", |
@@ -1246,7 +1246,7 @@ module AP_MODULE_DECLARE_DATA log_sql_module = { | |||
1246 | register_hooks /* register hooks */ | 1246 | register_hooks /* register hooks */ |
1247 | }; | 1247 | }; |
1248 | #elif defined(WITH_APACHE13) | 1248 | #elif defined(WITH_APACHE13) |
1249 | module log_sql_module = { | 1249 | module MODULE_VAR_EXPORT log_sql_module = { |
1250 | STANDARD_MODULE_STUFF, | 1250 | STANDARD_MODULE_STUFF, |
1251 | log_sql_module_init, /* module initializer */ | 1251 | log_sql_module_init, /* module initializer */ |
1252 | NULL, /* create per-dir config */ | 1252 | NULL, /* create per-dir config */ |