[mod_extforward] fix compilation without IPv6, (not) using undefined var (fixes #2515, thx mm)
From: Stefan Bühler <stbuehler@web.de> git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2911 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.34
parent
9b0d54d7cc
commit
268c054c40
1
NEWS
1
NEWS
|
@ -5,6 +5,7 @@ NEWS
|
|||
|
||||
- 1.4.34
|
||||
* [mod_auth] explicitly link ssl for SHA1 (fixes #2517)
|
||||
* [mod_extforward] fix compilation without IPv6, (not) using undefined var (fixes #2515, thx mm)
|
||||
|
||||
- 1.4.33 - 2013-09-27
|
||||
* mod_fastcgi: fix mix up of "mode" => "authorizer" in other fastcgi configs (fixes #2465, thx peex)
|
||||
|
|
|
@ -439,7 +439,6 @@ URIHANDLER_FUNC(mod_extforward_uri_handler) {
|
|||
#ifdef HAVE_IPV6
|
||||
ipstr_to_sockaddr(srv, real_remote_addr, &sock);
|
||||
#else
|
||||
UNUSED(addrs_left);
|
||||
sock.ipv4.sin_addr.s_addr = inet_addr(real_remote_addr);
|
||||
sock.plain.sa_family = (sock.ipv4.sin_addr.s_addr == 0xFFFFFFFF) ? AF_UNSPEC : AF_INET;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue