package/busybox: update to 1.19.3
[openwrt.git] / package / busybox / patches / 000-upstream-tftp.patch
diff --git a/package/busybox/patches/000-upstream-tftp.patch b/package/busybox/patches/000-upstream-tftp.patch
deleted file mode 100644 (file)
index c1f08bd..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/networking/tftp.c
-+++ b/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
This page took 0.026506 seconds and 4 git commands to generate.