svn commit: tags/busybox_1_9_2/networking
vda at busybox.net
vda at busybox.net
Sat Mar 22 10:26:35 PDT 2008
Author: vda
Date: 2008-03-22 10:26:35 -0700 (Sat, 22 Mar 2008)
New Revision: 21454
Log:
secret fix of stupid typo :(
Modified:
tags/busybox_1_9_2/networking/httpd.c
Changeset:
Modified: tags/busybox_1_9_2/networking/httpd.c
===================================================================
--- tags/busybox_1_9_2/networking/httpd.c 2008-03-21 21:22:24 UTC (rev 21453)
+++ tags/busybox_1_9_2/networking/httpd.c 2008-03-22 17:26:35 UTC (rev 21454)
@@ -1950,7 +1950,7 @@
if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
/* extra read only for POST */
if (prequest != request_GET) {
- tptr = tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
+ tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
if (!tptr[0])
send_headers_and_exit(HTTP_BAD_REQUEST);
errno = 0;
More information about the busybox-cvs
mailing list