Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] busybox: add 1.19.2 tftp fix
@ 2011-10-07 20:29 Gustavo Zacarias
  2011-10-07 20:29 ` [Buildroot] [PATCH 2/2] jimsh: new package Gustavo Zacarias
  2011-10-08 11:47 ` [Buildroot] [PATCH 1/2] busybox: add 1.19.2 tftp fix Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2011-10-07 20:29 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../busybox-1.19.2/busybox-1.19.2-tftp.patch       |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)
 create mode 100644 package/busybox/busybox-1.19.2/busybox-1.19.2-tftp.patch

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 0000000..15dc9e1
--- /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
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-10-08 11:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-07 20:29 [Buildroot] [PATCH 1/2] busybox: add 1.19.2 tftp fix Gustavo Zacarias
2011-10-07 20:29 ` [Buildroot] [PATCH 2/2] jimsh: new package Gustavo Zacarias
2011-10-08 11:47 ` [Buildroot] [PATCH 1/2] busybox: add 1.19.2 tftp fix Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox