From: Daniel Stenberg Date: Tue, 17 Mar 2020 15:04:35 +0000 (+0100) Subject: writeout_json: add missing comma to fix the HTTP version X-Git-Tag: curl-7_70_0~224 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab9dc5ae2a86e42bb087986587e68cefdf76531d;p=thirdparty%2Fcurl.git writeout_json: add missing comma to fix the HTTP version Follow-up to 04c03416e68fd635a15 --- diff --git a/src/tool_writeout_json.c b/src/tool_writeout_json.c index 99252ecb80..703cbbde87 100644 --- a/src/tool_writeout_json.c +++ b/src/tool_writeout_json.c @@ -34,7 +34,7 @@ static const char *http_version[] = { "0", /* CURL_HTTP_VERSION_NONE */ "1", /* CURL_HTTP_VERSION_1_0 */ "1.1", /* CURL_HTTP_VERSION_1_1 */ - "2" /* CURL_HTTP_VERSION_2 */ + "2", /* CURL_HTTP_VERSION_2 */ "3" /* CURL_HTTP_VERSION_3 */ };