From 5f27ea8179af48a1ac5a8f2583f27a05be28a91e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 24 Jul 2010 16:27:32 -0700 Subject: [PATCH] Fix long line --- http_parser.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http_parser.c b/http_parser.c index 2c8416b..987addd 100644 --- a/http_parser.c +++ b/http_parser.c @@ -1316,7 +1316,9 @@ size_t http_parser_execute (http_parser *parser, nread = 0; - if (parser->flags & F_UPGRADE || parser->method == HTTP_CONNECT) parser->upgrade = 1; + if (parser->flags & F_UPGRADE || parser->method == HTTP_CONNECT) { + parser->upgrade = 1; + } /* Here we call the headers_complete callback. This is somewhat * different than other callbacks because if the user returns 1, we