Skip to content

Commit c0a9d1b

Browse files
jbergstroembnoordhuis
authored andcommitted
versions: add http-parser patchlevel
PR-URL: #614 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Rod Vagg <[email protected]>
1 parent 7854811 commit c0a9d1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/node.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -2552,7 +2552,9 @@ void SetupProcessObject(Environment* env,
25522552

25532553
const char http_parser_version[] = NODE_STRINGIFY(HTTP_PARSER_VERSION_MAJOR)
25542554
"."
2555-
NODE_STRINGIFY(HTTP_PARSER_VERSION_MINOR);
2555+
NODE_STRINGIFY(HTTP_PARSER_VERSION_MINOR)
2556+
"."
2557+
NODE_STRINGIFY(HTTP_PARSER_VERSION_PATCH);
25562558
READONLY_PROPERTY(versions,
25572559
"http_parser",
25582560
FIXED_ONE_BYTE_STRING(env->isolate(), http_parser_version));

0 commit comments

Comments
 (0)