]> granicus.if.org Git - icinga2/commitdiff
Fix error message for specified ciphers
authorMichael Friedrich <michael.friedrich@netways.de>
Tue, 19 Jul 2016 18:13:34 +0000 (20:13 +0200)
committerMichael Friedrich <michael.friedrich@netways.de>
Tue, 19 Jul 2016 18:13:34 +0000 (20:13 +0200)
refs #11063

lib/base/tlsutility.cpp

index 65bb83d34d8a5c451a069edb43dc075057d10bbb..0315a1dbd89a7253b90eed279c53c5236f318d6f 100644 (file)
@@ -169,9 +169,9 @@ void SetCipherListToSSLContext(const boost::shared_ptr<SSL_CTX>& 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) << "\"";