diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-05-31 14:35:33 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-05-31 14:35:33 +0300 |
commit | dee819daabe6e7ab462beac779ab0dfd7d648844 (patch) | |
tree | 75a9d8cdd37491288ace3822bca777d1e780e258 /src | |
parent | c0bf729c8e7a79d9d7929cb715e3f7237218fcd9 (diff) | |
download | unit-dee819daabe6e7ab462beac779ab0dfd7d648844.tar.gz unit-dee819daabe6e7ab462beac779ab0dfd7d648844.tar.bz2 |
HTTP parser: changed style of a comment.
As requested by Igor.
Diffstat (limited to 'src')
-rw-r--r-- | src/nxt_http_parse.c | 8 |
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, }; |