openssl: fix a line length warning

This commit is contained in:
Kamil Dudka 2014-10-29 14:32:32 +01:00
parent b5ed5843a4
commit 07048941a4
1 changed files with 2 additions and 1 deletions

View File

@ -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