From 1799f7a6fb8c4ccba2847c7c538aab954676a16e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 14 May 2023 12:02:03 +0000 Subject: [PATCH] Stop dumping the list of cipher avaiable in DEBUG --- src/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 24a53e2b7..7ce00b1b4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -287,6 +287,7 @@ void ProxySQL_Main_init_SSL_module() { } //SSL_CTX_set_options(GloVars.global.ssl_ctx, SSL_OP_NO_SSLv3); // no necessary, because of previous SSL_CTX_set_min_proto_version #ifdef DEBUG +#if 0 { STACK_OF(SSL_CIPHER) *ciphers; ciphers = SSL_CTX_get_ciphers(GloVars.global.ssl_ctx); @@ -301,7 +302,8 @@ void ProxySQL_Main_init_SSL_module() { } fprintf(stderr,"\n"); } -#endif +#endif // 0 +#endif // DEBUG std::string msg = ""; ProxySQL_create_or_load_TLS(true, msg); }