aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.12.0-dhcp.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-09-28 19:28:51 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-09-28 19:28:51 +0000
commit08fd45b4fba68f58d0e01c326296f9a4651f9c7b (patch)
tree28c6464b9c739e77389544550ff146b5935b419d /package/busybox/busybox-1.12.0-dhcp.patch
parent94b3420da9c94c3044faead59f145a99a098c423 (diff)
downloadbuildroot-novena-08fd45b4fba68f58d0e01c326296f9a4651f9c7b.tar.gz
buildroot-novena-08fd45b4fba68f58d0e01c326296f9a4651f9c7b.zip
busybox: bump 1.11.x and 1.12.x versions
Diffstat (limited to 'package/busybox/busybox-1.12.0-dhcp.patch')
-rw-r--r--package/busybox/busybox-1.12.0-dhcp.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/busybox/busybox-1.12.0-dhcp.patch b/package/busybox/busybox-1.12.0-dhcp.patch
deleted file mode 100644
index b8a9af665..000000000
--- a/package/busybox/busybox-1.12.0-dhcp.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- busybox-1.12.0/networking/udhcp/dhcpc.c Wed Aug 6 00:55:58 2008
-+++ busybox-1.12.0-dhcp/networking/udhcp/dhcpc.c Thu Aug 28 00:05:23 2008
-@@ -259,9 +259,10 @@
- if (opt & OPT_o)
- client_config.no_default_options = 1;
- while (list_O) {
-- int n = index_in_strings(dhcp_option_strings, llist_pop(&list_O));
-+ char *optstr = llist_pop(&list_O);
-+ int n = index_in_strings(dhcp_option_strings, optstr);
- if (n < 0)
-- bb_error_msg_and_die("unknown option '%s'", list_O->data);
-+ bb_error_msg_and_die("unknown option '%s'", optstr);
- n = dhcp_options[n].code;
- client_config.opt_mask[n >> 3] |= 1 << (n & 7);
- }