From: Kamil Dudka Date: Wed, 29 Oct 2014 13:32:32 +0000 (+0100) Subject: openssl: fix a line length warning X-Git-Tag: curl-7_39_0~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07048941a4053ccebc0b9be8e1368ab5382d9912;p=curl openssl: fix a line length warning --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index ae33093cd..f0f076e41 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -1422,7 +1422,8 @@ static void ssl_tls_trace(int direction, int ssl_ver, int content_type, /* Check for OpenSSL 1.0.2 which has ALPN support. */ #undef HAS_ALPN -#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_NEXTPROTONEG) \ +#if OPENSSL_VERSION_NUMBER >= 0x10002000L \ + && !defined(OPENSSL_NO_NEXTPROTONEG) \ && !defined(OPENSSL_NO_TLSEXT) # define HAS_ALPN #else