aboutsummaryrefslogtreecommitdiff
path: root/lib/vtls
diff options
context:
space:
mode:
authorKamil Dudka <kdudka@redhat.com>2014-10-29 14:32:32 +0100
committerKamil Dudka <kdudka@redhat.com>2014-10-29 14:34:46 +0100
commit07048941a4053ccebc0b9be8e1368ab5382d9912 (patch)
treef91a343cc29d327c1543ac7943a841e4c1db4450 /lib/vtls
parentb5ed5843a4fb5ac4d7f2deadcefe6022605c3ae8 (diff)
openssl: fix a line length warning
Diffstat (limited to 'lib/vtls')
-rw-r--r--lib/vtls/openssl.c3
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