diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-02-09 09:00:47 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-09 22:43:25 +0100 |
commit | a5f97bb41ca46eb493070328566a32e4314bdbb0 (patch) | |
tree | e4ece21b217afc356198cd4aa275f0c815c27d01 /package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch | |
parent | 8d3e6abc6b7120e7d2b84cac07237e67429e2283 (diff) | |
download | buildroot-novena-a5f97bb41ca46eb493070328566a32e4314bdbb0.tar.gz buildroot-novena-a5f97bb41ca46eb493070328566a32e4314bdbb0.zip |
busybox: bump to version 1.18.3
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch')
-rw-r--r-- | package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch b/package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch deleted file mode 100644 index bed4f4dec..000000000 --- a/package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- busybox-1.18.2/networking/udhcp/common.c -+++ busybox-1.18.2-udhcp/networking/udhcp/common.c -@@ -375,7 +375,7 @@ static NOINLINE void attach_option( - new->data = xmalloc(length + OPT_DATA); - new->data[OPT_CODE] = optflag->code; - new->data[OPT_LEN] = length; -- memcpy(new->data + OPT_DATA, buffer, length); -+ memcpy(new->data + OPT_DATA, (allocated ? allocated : buffer), length); - - curr = opt_list; - while (*curr && (*curr)->data[OPT_CODE] < optflag->code) |