Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-03-22 20:26:35 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2008-03-22 20:26:35 +0300
commit150ed1d171a255337272a410e6f9f5fed064e752 (patch)
tree8b2389d4a3bcf3520d6a6a90f9fc937eefbba232
parenta8e183a5778fbf7dbff9987e402232e4b55ddd79 (diff)
secret fix of stupid typo :(1_9_2
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 3e3be5701..bb3dd777a 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1950,7 +1950,7 @@ static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
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;