From 00ea0e7db0a0a958309d35e28718949d10d537c9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 7 Mar 2015 11:10:30 +0100 Subject: http2: use CURL_HTTP_VERSION_* symbols instead of NPN_* Since they already exist and will make comparing easier --- lib/vtls/polarssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/vtls/polarssl.c') diff --git a/lib/vtls/polarssl.c b/lib/vtls/polarssl.c index b7f2f6c94..cafcec2b3 100644 --- a/lib/vtls/polarssl.c +++ b/lib/vtls/polarssl.c @@ -469,12 +469,12 @@ polarssl_connect_step2(struct connectdata *conn, #ifdef USE_NGHTTP2 if(!strncmp(next_protocol, NGHTTP2_PROTO_VERSION_ID, NGHTTP2_PROTO_VERSION_ID_LEN)) { - conn->negnpn = NPN_HTTP2; + conn->negnpn = CURL_HTTP_VERSION_2_0; } else #endif if(!strncmp(next_protocol, ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH)) { - conn->negnpn = NPN_HTTP1_1; + conn->negnpn = CURL_HTTP_VERSION_1_1; } } else -- cgit v1.2.3