From dee819daabe6e7ab462beac779ab0dfd7d648844 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 31 May 2017 14:35:33 +0300 Subject: [PATCH] HTTP parser: changed style of a comment. As requested by Igor. --- src/nxt_http_parse.c | 8 ++++---- 1 file 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, };