summaryrefslogtreecommitdiffstats
path: root/patches/busybox-1.9.1/generic/busybox-1.9.1-httpd-POST.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/busybox-1.9.1/generic/busybox-1.9.1-httpd-POST.patch')
-rw-r--r--patches/busybox-1.9.1/generic/busybox-1.9.1-httpd-POST.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/patches/busybox-1.9.1/generic/busybox-1.9.1-httpd-POST.patch b/patches/busybox-1.9.1/generic/busybox-1.9.1-httpd-POST.patch
deleted file mode 100644
index 9642a5d05..000000000
--- a/patches/busybox-1.9.1/generic/busybox-1.9.1-httpd-POST.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Subject: busybox 1.9.1 fixes
-From: http://busybox.net/downloads/fixes-1.9.1
-
----
- networking/httpd.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Index: busybox-1.9.1/networking/httpd.c
-===================================================================
---- busybox-1.9.1.orig/networking/httpd.c
-+++ busybox-1.9.1/networking/httpd.c
-@@ -1950,7 +1950,7 @@ static void handle_incoming_and_exit(con
- if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
- /* extra read only for POST */
- if (prequest != request_GET) {
-- tptr = iobuf + sizeof("Content-length:") - 1;
-+ tptr = tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
- if (!tptr[0])
- send_headers_and_exit(HTTP_BAD_REQUEST);
- errno = 0;