From 6d7a7f4776711758cf5b59028378f01cd8eba493 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 13 Jun 2009 14:56:04 +0200 Subject: FreeBSD compatibility patches - update ipset and libpri to latest upstream --- package/dhcp/patches/patch-common_discover_c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 package/dhcp/patches/patch-common_discover_c (limited to 'package/dhcp') diff --git a/package/dhcp/patches/patch-common_discover_c b/package/dhcp/patches/patch-common_discover_c new file mode 100644 index 000000000..8f74086ff --- /dev/null +++ b/package/dhcp/patches/patch-common_discover_c @@ -0,0 +1,13 @@ +--- dhcp-4.1.0.orig/common/discover.c 2008-08-29 19:48:57.000000000 +0200 ++++ dhcp-4.1.0/common/discover.c 2009-06-12 21:18:42.000000000 +0200 +@@ -684,8 +684,8 @@ next_iface6(struct iface_info *info, int + for (i=0; i<16; i++) { + unsigned char byte; + static const char hex[] = "0123456789abcdef"; +- byte = ((index(hex, buf[i * 2]) - hex) << 4) | +- (index(hex, buf[i * 2 + 1]) - hex); ++ byte = ((strchr(hex, buf[i * 2]) - hex) << 4) | ++ (strchr(hex, buf[i * 2 + 1]) - hex); + addr.sin6_addr.s6_addr[i] = byte; + } + memcpy(&info->addr, &addr, sizeof(addr)); -- cgit v1.2.3