From: Denis Vlasenko Date: Sat, 21 Jul 2007 15:07:22 +0000 (-0000) Subject: fix typo in last commit X-Git-Tag: 1_7_0~111 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=82bd9ee64546c4f6f60303f6356377ce6b695a06;p=oweals%2Fbusybox.git fix typo in last commit --- diff --git a/networking/httpd.c b/networking/httpd.c index d058812fc..7c91bd597 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1687,7 +1687,7 @@ static void handleIncoming(void) } } else if (STRNCASECMP(buf, "Cookie:") == 0) { cookie = strdup(skip_whitespace(buf + sizeof("Cookie:")-1)); - } else if (STRNCASECMP(buf, "Content-Type:") == 0)) { + } else if (STRNCASECMP(buf, "Content-Type:") == 0) { content_type = strdup(skip_whitespace(buf + sizeof("Content-Type:")-1)); } else if (STRNCASECMP(buf, "Referer:") == 0) { referer = strdup(skip_whitespace(buf + sizeof("Referer:")-1));