parent
61e492d316
commit
f5b3f741ce
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=uhttpd
|
PKG_NAME:=uhttpd
|
||||||
PKG_RELEASE:=19
|
PKG_RELEASE:=20
|
||||||
|
|
||||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||||
PKG_BUILD_DEPENDS := libcyassl liblua
|
PKG_BUILD_DEPENDS := libcyassl liblua
|
||||||
|
|
|
@ -339,8 +339,8 @@ static struct http_request * uh_http_header_parse(struct client *cl, char *buffe
|
||||||
hdrdata = &buffer[i+2];
|
hdrdata = &buffer[i+2];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* have no name and found [A-Z], start of name */
|
/* have no name and found [A-Za-z], start of name */
|
||||||
else if( !hdrname && isalpha(buffer[i]) && isupper(buffer[i]) )
|
else if( !hdrname && isalpha(buffer[i]) )
|
||||||
{
|
{
|
||||||
hdrname = &buffer[i];
|
hdrname = &buffer[i];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue