summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/nxt_http_parse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nxt_http_parse.c b/src/nxt_http_parse.c
index aba889bf..3fc8b494 100644
--- a/src/nxt_http_parse.c
+++ b/src/nxt_http_parse.c
@@ -69,11 +69,11 @@ static const uint8_t nxt_http_target_chars[256] nxt_aligned(64) = {
/* \0 \n \r */
4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- /*
- * \s ! " # $ % & ' ( ) * + , - . /
- * 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
- */
+
+ /* \s ! " # $ % & ' ( ) * + , - . / */
1, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0, 9, 0, 0, 6, 5,
+
+ /* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7,
};