diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-04 00:54:59 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-04 00:54:59 +0100 |
commit | 556a52e2dfd219c37f88e043ad62c370966865c5 (patch) | |
tree | dca7c5fa0081e888b8a06c36a764318658c28801 /package/bind/patches | |
parent | 99cd2eeceb0d2dd4a9378938b2162ed762680c66 (diff) |
update to latest upstream
Diffstat (limited to 'package/bind/patches')
-rw-r--r-- | package/bind/patches/patch-lib_isc_unix_ifiter_ioctl_c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/package/bind/patches/patch-lib_isc_unix_ifiter_ioctl_c b/package/bind/patches/patch-lib_isc_unix_ifiter_ioctl_c deleted file mode 100644 index adb2aa906..000000000 --- a/package/bind/patches/patch-lib_isc_unix_ifiter_ioctl_c +++ /dev/null @@ -1,14 +0,0 @@ -$Id: update-patches 24 2008-08-31 14:56:13Z wbx $ ---- bind-9.4.1.orig/lib/isc/unix/ifiter_ioctl.c 2006-02-04 00:51:38.000000000 +0100 -+++ bind-9.4.1/lib/isc/unix/ifiter_ioctl.c 2008-10-08 14:56:12.000000000 +0200 -@@ -479,8 +479,8 @@ linux_if_inet6_current(isc_interfaceiter - for (i = 0; i < 16; i++) { - unsigned char byte; - static const char hex[] = "0123456789abcdef"; -- byte = ((index(hex, address[i * 2]) - hex) << 4) | -- (index(hex, address[i * 2 + 1]) - hex); -+ byte = ((strchr(hex, address[i * 2]) - hex) << 4) | -+ (strchr(hex, address[i * 2 + 1]) - hex); - addr6.s6_addr[i] = byte; - } - iter->current.af = AF_INET6; |