Changes of Revision 2
[-] | Changed | apache2-mod_stats.spec |
x 1
2 # 3 # svn export 'https://forgesvn1.novell.com/svn/opensuse/trunk/tools/download-stats/mod_stats'; tar czf mod_stats.tar.gz mod_stats 4 Source: mod_stats.tar.gz 5 +Patch100: apache24.patch 6 # 7 BuildRoot: %{_tmppath}/%{name}-%{version}-build 8 9
10 11 %prep 12 %setup -n mod_stats 13 +%patch100 14 15 %build 16 %{apxs} -c mod_stats.c 17 |
||
[+] | Added | apache24.patch ^ |
@@ -0,0 +1,11 @@ +--- mod_stats.c.orig 2014-02-09 22:58:41.443714205 +0100 ++++ mod_stats.c 2014-02-09 22:58:59.903707312 +0100 +@@ -429,7 +429,7 @@ + /* is this request from one of the listed admin servers? */ + list = (apr_sockaddr_t *) cfg->admin_ips->elts; + for (i = 0; i < cfg->admin_ips->nelts; i++) { +- if (apr_sockaddr_equal(r->connection->remote_addr, &list[i])) { ++ if (apr_sockaddr_equal(r->connection->client_ip, &list[i])) { + admin_allowed = 1; + admin_host = ((char **) cfg->admin_hosts->elts)[i]; + debugLog(r, cfg, "Host %s is a StatsAdminHost", admin_host); |