diff options
author | Kamil Dudka <kdudka@redhat.com> | 2014-10-29 14:32:32 +0100 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2014-10-29 14:34:46 +0100 |
commit | 07048941a4053ccebc0b9be8e1368ab5382d9912 (patch) | |
tree | f91a343cc29d327c1543ac7943a841e4c1db4450 /lib | |
parent | b5ed5843a4fb5ac4d7f2deadcefe6022605c3ae8 (diff) |
openssl: fix a line length warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/openssl.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 |