diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-04 21:05:07 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-04 21:05:07 +0000 |
commit | e8d87c5857d1eae75e309515f9349c11d9bfb5d7 (patch) | |
tree | 2068f5f0a15da6b57db597fb042a0ebc592f6bd0 /toolchain/uClibc/patches | |
parent | e35b4624b70c55f9a4da9dacba05c64694802d47 (diff) | |
download | upstream-e8d87c5857d1eae75e309515f9349c11d9bfb5d7.tar.gz upstream-e8d87c5857d1eae75e309515f9349c11d9bfb5d7.tar.bz2 upstream-e8d87c5857d1eae75e309515f9349c11d9bfb5d7.zip |
fix ipv6 host name lookup from /etc/hosts
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@559 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/patches')
-rw-r--r-- | toolchain/uClibc/patches/inet6_hosts_resolve.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches/inet6_hosts_resolve.patch b/toolchain/uClibc/patches/inet6_hosts_resolve.patch new file mode 100644 index 0000000000..fd1aaa1d25 --- /dev/null +++ b/toolchain/uClibc/patches/inet6_hosts_resolve.patch @@ -0,0 +1,24 @@ +diff -urN uClibc-0.9.27.old/libc/inet/resolv.c uClibc-0.9.27/libc/inet/resolv.c +--- uClibc-0.9.27.old/libc/inet/resolv.c 2005-01-12 08:59:21.000000000 +0100 ++++ uClibc-0.9.27/libc/inet/resolv.c 2005-04-04 22:14:38.000000000 +0200 +@@ -2029,7 +2029,7 @@ + int old_errno = errno; /* Save the old errno and reset errno */ + __set_errno(0); /* to check for missing /etc/hosts. */ + +- if ((i=__get_hosts_byname_r(name, AF_INET, result_buf, ++ if ((i=__get_hosts_byname_r(name, AF_INET6, result_buf, + buf, buflen, result, h_errnop))==0) + return i; + switch (*h_errnop) { +diff -urN uClibc-0.9.27.old/libc/inet/resolv.c uClibc-0.9.27/libc/inet/resolv.c +--- uClibc-0.9.27.old/libc/inet/resolv.c 2005-04-04 22:16:54.000000000 +0200 ++++ uClibc-0.9.27/libc/inet/resolv.c 2005-04-04 22:46:59.000000000 +0200 +@@ -1513,7 +1513,7 @@ + } else { + DPRINTF("Error\n"); + ret=TRY_AGAIN; +- break; /* bad ip address */ ++ continue; /* bad ip address, ignore */ + } + + if (action!=GETHOSTENT) { |