From e712d6ffe72902dc8b16ef20f0897e2073254877 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 19 Jul 2016 20:13:34 +0200 Subject: [PATCH] Fix error message for specified ciphers refs #11063 --- lib/base/tlsutility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base/tlsutility.cpp b/lib/base/tlsutility.cpp index 65bb83d34..0315a1dbd 100644 --- a/lib/base/tlsutility.cpp +++ b/lib/base/tlsutility.cpp @@ -169,9 +169,9 @@ void SetCipherListToSSLContext(const boost::shared_ptr& context, const if (SSL_CTX_set_cipher_list(context.get(), cipherList.CStr()) == 0) { Log(LogCritical, "SSL") - << "Error with cipher list '" + << "Cipher list '" << cipherList - << "' results in no availabe ciphers: " + << "' does not specify any usable ciphers: " << ERR_peek_error() << ", \"" << ERR_error_string(ERR_peek_error(), errbuf) << "\"";