summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch')
-rw-r--r--package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch b/package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch
deleted file mode 100644
index 15dc9e1d1..000000000
--- a/package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- busybox-1.19.2/networking/tftp.c
-+++ busybox-1.19.2-tftp/networking/tftp.c
-@@ -813,7 +813,8 @@ int tftpd_main(int argc UNUSED_PARAM, ch
- goto err;
- }
- mode = local_file + strlen(local_file) + 1;
-- if (mode >= block_buf + result || strcmp(mode, "octet") != 0) {
-+ /* RFC 1350 says mode string is case independent */
-+ if (mode >= block_buf + result || strcasecmp(mode, "octet") != 0) {
- goto err;
- }
- # if ENABLE_FEATURE_TFTP_BLOCKSIZE