summaryrefslogtreecommitdiff
path: root/uhttpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'uhttpd.c')
-rw-r--r--uhttpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uhttpd.c b/uhttpd.c
index 491452b..2c7755f 100644
--- a/uhttpd.c
+++ b/uhttpd.c
@@ -339,8 +339,8 @@ static struct http_request * uh_http_header_parse(struct client *cl, char *buffe
hdrdata = &buffer[i+2];
}
- /* have no name and found [A-Z], start of name */
- else if( !hdrname && isalpha(buffer[i]) && isupper(buffer[i]) )
+ /* have no name and found [A-Za-z], start of name */
+ else if( !hdrname && isalpha(buffer[i]) )
{
hdrname = &buffer[i];
}