Accepting request 88021 from home:elvigia:branches:network:utilities

- fix typo in sni patch , in the IPV6 case should be 
  is_valid_ipv6_address() instead of is_valid_ipv4_address()
- Add comment to the patch referencing upstream tracker.

OBS-URL: https://build.opensuse.org/request/show/88021
OBS-URL: https://build.opensuse.org/package/show/network:utilities/wget?expand=0&rev=14
This commit is contained in:
Cristian Rodríguez 2011-10-15 18:22:24 +00:00 committed by Git OBS Bridge
parent 655472ef9a
commit 5f97189cb9
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,4 @@
https://savannah.gnu.org/bugs/?func=detailitem&item_id=26786
=== modified file 'src/host.c'
--- src/host.c.orig
+++ src/host.c
@ -16,7 +17,7 @@
+ if (is_valid_ipv4_address(name, endp))
+ return true;
+#ifdef ENABLE_IPV6
+ if (is_valid_ipv4_address(name, endp))
+ if (is_valid_ipv6_address(name, endp))
+ return true;
+#endif
+ return false;

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Sat Oct 15 18:19:59 UTC 2011 - crrodriguez@opensuse.org
- fix typo in sni patch , in the IPV6 case should be
is_valid_ipv6_address() instead of is_valid_ipv4_address()
- Add comment to the patch referencing upstream tracker.
-------------------------------------------------------------------
Fri Oct 14 05:01:53 UTC 2011 - crrodriguez@opensuse.org