summaryrefslogtreecommitdiffstats
path: root/patches/busybox-1.9.1/generic/busybox-1.9.1-udhcp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/busybox-1.9.1/generic/busybox-1.9.1-udhcp.patch')
-rw-r--r--patches/busybox-1.9.1/generic/busybox-1.9.1-udhcp.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/patches/busybox-1.9.1/generic/busybox-1.9.1-udhcp.patch b/patches/busybox-1.9.1/generic/busybox-1.9.1-udhcp.patch
deleted file mode 100644
index 340d6b451..000000000
--- a/patches/busybox-1.9.1/generic/busybox-1.9.1-udhcp.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Subject: busybox 1.9.1 fixes
-From: http://busybox.net/downloads/fixes-1.9.1
-
----
- networking/udhcp/files.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Index: busybox-1.9.1/networking/udhcp/files.c
-===================================================================
---- busybox-1.9.1.orig/networking/udhcp/files.c
-+++ busybox-1.9.1/networking/udhcp/files.c
-@@ -167,7 +167,7 @@ static int read_opt(const char *const_li
- if (!opt)
- return 0;
-
-- idx = index_in_strings(opt, dhcp_option_strings); /* NB: was strcasecmp! */
-+ idx = index_in_strings(dhcp_option_strings, opt); /* NB: was strcasecmp! */
- if (idx < 0)
- return 0;
- option = &dhcp_options[idx];