summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_http_parse.c')
-rw-r--r--src/nxt_http_parse.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/nxt_http_parse.c b/src/nxt_http_parse.c
index 2bd821b8..05254506 100644
--- a/src/nxt_http_parse.c
+++ b/src/nxt_http_parse.c
@@ -618,7 +618,9 @@ nxt_http_parse_field_value(nxt_http_request_parse_t *rp, u_char **pos,
return NXT_AGAIN;
}
- if (*p != ' ') {
+ ch = *p;
+
+ if (ch != ' ' && ch != '\t') {
break;
}
@@ -662,7 +664,8 @@ nxt_http_parse_field_value(nxt_http_request_parse_t *rp, u_char **pos,
*pos = p;
if (nxt_fast_path(p != start)) {
- while (p[-1] == ' ') {
+
+ while (p[-1] == ' ' || p[-1] == '\t') {
p--;
}
}