diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-09-03 23:14:51 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-09-04 22:29:38 +0200 |
commit | 06b6e1d0d27dab4927f367afb9139ed5bf663153 (patch) | |
tree | b6ef56c22b1342317182e1ff4495c2f90fd3b52e | |
parent | b77997e6da242e4466bc20e62c4f960cb9122214 (diff) |
curl -V: output HTTP2 as a feature if present
-rw-r--r-- | src/tool_getparam.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tool_getparam.c b/src/tool_getparam.c index b5068ac5f..45194235a 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -285,7 +285,8 @@ static const struct feat feats[] = { {"krb4", CURL_VERSION_KERBEROS4}, {"libz", CURL_VERSION_LIBZ}, {"CharConv", CURL_VERSION_CONV}, - {"TLS-SRP", CURL_VERSION_TLSAUTH_SRP} + {"TLS-SRP", CURL_VERSION_TLSAUTH_SRP}, + {"HTTP2", CURL_VERSION_HTTP2} }; /* Split the argument of -E to 'certname' and 'passphrase' separated by colon. |