Patch by Gustavo Zacarias <gustavo@zacarias.com.ar> Closes #145. Current bind package is version 9.3.2 which is from the 9.3 branch and is EOLed. It has many security bugs probably fixed in 9.3.6-P1 but since it won't be supported for long it's probably metter to move on to a supported branch. CVE-2009-0025, CVE-2008-1447, CVE-2008-0122, CVE-2007-2926 and probably more. While at it migrate to Makefile.autotools.in too. Also introduced an option for/not to install userland tools (dig, host, nslookup, nsupdate). [ Peter: don't install into staging ]
24 lines
868 B
Diff
24 lines
868 B
Diff
diff -Nura bind-9.5.1-P1/lib/isc/unix/ifiter_ioctl.c bind-9.5.1-P1.nosusv3/lib/isc/unix/ifiter_ioctl.c
|
|
--- bind-9.5.1-P1/lib/isc/unix/ifiter_ioctl.c 2007-08-30 03:02:28.000000000 -0300
|
|
+++ bind-9.5.1-P1.nosusv3/lib/isc/unix/ifiter_ioctl.c 2009-03-04 16:31:20.000000000 -0200
|
|
@@ -17,6 +17,8 @@
|
|
|
|
/* $Id: ifiter_ioctl.c,v 1.58 2007/08/30 06:02:28 marka Exp $ */
|
|
|
|
+#include <string.h>
|
|
+
|
|
/*! \file
|
|
* \brief
|
|
* Obtain the list of network interfaces using the SIOCGLIFCONF ioctl.
|
|
@@ -479,8 +481,8 @@
|
|
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;
|