svn commit: branches/busybox_1_9_stable/networking

vda at busybox.net vda at busybox.net
Fri Mar 21 20:39:30 UTC 2008


Author: vda
Date: 2008-03-21 13:39:30 -0700 (Fri, 21 Mar 2008)
New Revision: 21449

Log:
httpd: remove stray double assignment



Modified:
   branches/busybox_1_9_stable/networking/httpd.c


Changeset:
Modified: branches/busybox_1_9_stable/networking/httpd.c
===================================================================
--- branches/busybox_1_9_stable/networking/httpd.c	2008-03-21 20:37:16 UTC (rev 21448)
+++ branches/busybox_1_9_stable/networking/httpd.c	2008-03-21 20:39:30 UTC (rev 21449)
@@ -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