From: Olivier Houchard Date: Fri, 3 Nov 2017 12:50:53 +0000 (+0100) Subject: MINOR: ssl: Spell 0x10101000L correctly. X-Git-Tag: v1.8-rc3~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfdef2e3123306a2d671ebc5fd05596295aa2b88;p=thirdparty%2Fhaproxy.git MINOR: ssl: Spell 0x10101000L correctly. Issue added in 1.8-dev by c2aae74 ("MEDIUM: ssl: Handle early data with OpenSSL 1.1.1"), no impact on older versions. --- diff --git a/src/ssl_sock.c b/src/ssl_sock.c index 818f8ab6f0..abb09d03ed 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c @@ -4980,7 +4980,7 @@ static int ssl_sock_init(struct connection *conn) /* leave init state and start handshake */ conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; -#if OPENSSL_VERSION_NUMBER >= 0x0101000L +#if OPENSSL_VERSION_NUMBER >= 0x10101000L conn->flags |= CO_FL_EARLY_SSL_HS; #endif