From 07048941a4053ccebc0b9be8e1368ab5382d9912 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Wed, 29 Oct 2014 14:32:32 +0100 Subject: [PATCH] openssl: fix a line length warning --- lib/vtls/openssl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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