From 676ac46ff55cf58c3c3005d8ee2c80da3a99e6a0 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Thu, 19 Feb 2015 16:44:27 +0100 Subject: gtls: fix build with HTTP2 --- lib/vtls/gtls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/vtls') 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"); } } -- cgit v1.2.3