From 7d588eed783aa9154e5fca3b4fa9fdcbaae93467 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 26 Nov 2012 18:47:31 +0100 Subject: [PATCH] BUILD: ssl: OpenSSL 0.9.6 has no renegociation It did not build anymore on 0.9.6. Not very important but better fix it. --- src/ssl_sock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ssl_sock.c b/src/ssl_sock.c index f6c410f342..2892f8ffd7 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c @@ -467,6 +467,7 @@ int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, struct proxy *cu #ifndef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION /* needs OpenSSL >= 0.9.7 */ #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 +#define SSL_renegotiate_pending(arg) 0 #endif #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 0.9.8 */ #define SSL_OP_SINGLE_ECDH_USE 0 -- 2.47.3