From 4ec94ac262098a871c0bedc40799153217722f38 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Wed, 19 May 2010 21:39:10 +0000 Subject: package/busybox: add upstream udhcp hostname truncation fix, bump release number git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21510 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/busybox/patches/000-upstream-dhcpd.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/busybox/patches/000-upstream-dhcpd.patch (limited to 'package/busybox/patches') diff --git a/package/busybox/patches/000-upstream-dhcpd.patch b/package/busybox/patches/000-upstream-dhcpd.patch new file mode 100644 index 0000000000..eef33f80de --- /dev/null +++ b/package/busybox/patches/000-upstream-dhcpd.patch @@ -0,0 +1,11 @@ +--- a/networking/udhcp/leases.c ++++ b/networking/udhcp/leases.c +@@ -64,6 +64,8 @@ struct dyn_lease* FAST_FUNC add_lease( + oldest->hostname[0] = '\0'; + if (hostname) { + char *p; ++ ++ hostname_len++; /* include NUL */ + if (hostname_len > sizeof(oldest->hostname)) + hostname_len = sizeof(oldest->hostname); + p = safe_strncpy(oldest->hostname, hostname, hostname_len); -- cgit v1.2.3