Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 24, 2010
1 parent 8c3101c commit 5f27ea8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion http_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5f27ea8

Please sign in to comment.