diff options
author | Denis Vlasenko | 2007-07-21 15:07:22 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-07-21 15:07:22 +0000 |
commit | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (patch) | |
tree | aabd9c1c2bb4156bb9771be15039cd0eac99180d /networking/httpd.c | |
parent | 6cd84dac84f72dde437790cc620c8638d3591d00 (diff) | |
download | busybox-82bd9ee64546c4f6f60303f6356377ce6b695a06.zip busybox-82bd9ee64546c4f6f60303f6356377ce6b695a06.tar.gz |
fix typo in last commit
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index d058812..7c91bd5 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)); |