From: Alessandro Ghedini Date: Thu, 19 Feb 2015 15:44:27 +0000 (+0100) Subject: gtls: fix build with HTTP2 X-Git-Tag: curl-7_41_0~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=676ac46ff55cf58c3c3005d8ee2c80da3a99e6a0;p=curl gtls: fix build with HTTP2 --- diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c index f9812ca5b..5b9188349 100644 --- a/lib/vtls/gtls.c +++ b/lib/vtls/gtls.c @@ -626,7 +626,7 @@ gtls_connect_step1(struct connectdata *conn, gnutls_alpn_set_protocols(session, protocols, protocols_size, 0); infof(data, "ALPN, offering %s, %s\n", NGHTTP2_PROTO_VERSION_ID, ALPN_HTTP_1_1); - connssl->asked_for_h2 = TRUE; + conn->ssl[sockindex].asked_for_h2 = TRUE; } else { infof(data, "SSL, can't negotiate HTTP/2.0 without ALPN\n"); @@ -1083,7 +1083,7 @@ gtls_connect_step3(struct connectdata *conn, conn->negnpn = NPN_HTTP1_1; } } - else if(connssl->asked_for_h2) { + else if(conn->ssl[sockindex].asked_for_h2) { infof(data, "ALPN, server did not agree to a protocol\n"); } }