summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apache/mod_log_sql/files/mod_log_sql-1.101-apache-2.4.patch')
-rw-r--r--www-apache/mod_log_sql/files/mod_log_sql-1.101-apache-2.4.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/www-apache/mod_log_sql/files/mod_log_sql-1.101-apache-2.4.patch b/www-apache/mod_log_sql/files/mod_log_sql-1.101-apache-2.4.patch
deleted file mode 100644
index afbaf3927b7d..000000000000
--- a/www-apache/mod_log_sql/files/mod_log_sql-1.101-apache-2.4.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Fixes compatibility with Apache 2.4 API
-Author: Thomas Goirand <zigo@debian.org>
-Bug-Debian: http://bugs.debian.org/666797
-Forwarded: http://lists.outoforder.cc/pipermail/mod_log_sql/2012-April/000358.html
-Last-Update: 2013-07-10
-
---- libapache-mod-log-sql-1.100.orig/functions.h
-+++ libapache-mod-log-sql-1.100/functions.h
-@@ -14,7 +14,7 @@ static const char *extract_remote_addres
-
- static const char *extract_remote_address(request_rec *r, char *a)
- {
-- return r->connection->remote_ip;
-+ return r->useragent_ip;
- }
-
- static const char *extract_local_address(request_rec *r, char *a) __attribute__((unused));