diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-03-31 09:00:58 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-03-31 09:00:58 +0200 |
commit | 6448946ac32af51894e41d9b2e93d1ddd7f865f3 (patch) | |
tree | 55282cbb0d91adb52030bc675aff8a739dc5d08b /lib/vtls | |
parent | ef813c709749d02d8dee17f5215239909b2fe968 (diff) |
http2: let openssl mention the exact protocol negotiated
Remove a superfluous "negotiated http2" info line
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/openssl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index dc94b8982..35912c74c 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -1430,7 +1430,8 @@ select_next_proto_cb(SSL *ssl, (void)ssl; if(retval == 1) { - infof(conn->data, "NPN, negotiated HTTP2\n"); + infof(conn->data, "NPN, negotiated HTTP2 (%s)\n", + NGHTTP2_PROTO_VERSION_ID); conn->negnpn = NPN_HTTP2; } else if(retval == 0) { |