]> granicus.if.org Git - curl/commitdiff
openssl: fix a line length warning
authorKamil Dudka <kdudka@redhat.com>
Wed, 29 Oct 2014 13:32:32 +0000 (14:32 +0100)
committerKamil Dudka <kdudka@redhat.com>
Wed, 29 Oct 2014 13:34:46 +0000 (14:34 +0100)
lib/vtls/openssl.c

index ae33093cd77904f61cd46ca3456fec21026511a1..f0f076e416547c81573c15a35f4ae7076eb2ef23 100644 (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