diff options
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch | 12 |
1 files changed, 12 insertions, 0 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 new file mode 100644 index 000000000..15dc9e1d1 --- /dev/null +++ b/package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch @@ -0,0 +1,12 @@ +--- 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 |