summaryrefslogtreecommitdiffstats
path: root/src/openvpn/ssl_openssl.c
diff options
context:
space:
mode:
authorSteffan Karger <steffan@karger.me>2015-10-06 20:38:27 +0200
committerGert Doering <gert@greenie.muc.de>2015-10-08 15:28:46 +0200
commit7246ccfdbe6039c5c578ecaa07505307d53b8e84 (patch)
treee15eb04a1c59a6db278ef16029e198b81b819eb1 /src/openvpn/ssl_openssl.c
parentd17d362dfec1abc5bedcea2f1154470018c82eca (diff)
downloadopenvpn-7246ccfdbe6039c5c578ecaa07505307d53b8e84.tar.gz
openvpn-7246ccfdbe6039c5c578ecaa07505307d53b8e84.tar.xz
openvpn-7246ccfdbe6039c5c578ecaa07505307d53b8e84.zip
openssl: be less verbose about cipher translation errors
Translation errors are usually not a real problem, since we don't maintain the complete list of ciphers OpenSSL supports. So, be less verbose if we can not find a translation. Also, add 'translations' for commonly used negated cipher suites to suppress messages about those completely. Signed-off-by: Steffan Karger <steffan@karger.me> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <1444156707-14087-1-git-send-email-steffan@karger.me> URL: http://article.gmane.org/gmane.network.openvpn.devel/10198 Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'src/openvpn/ssl_openssl.c')
-rw-r--r--src/openvpn/ssl_openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvpn/ssl_openssl.c b/src/openvpn/ssl_openssl.c
index df9fa87..a38c41b 100644
--- a/src/openvpn/ssl_openssl.c
+++ b/src/openvpn/ssl_openssl.c
@@ -272,7 +272,7 @@ tls_ctx_restrict_ciphers(struct tls_root_ctx *ctx, const char *ciphers)
// Issue warning on missing translation
// %.*s format specifier expects length of type int, so guarantee
// that length is small enough and cast to int.
- msg (M_WARN, "No valid translation found for TLS cipher '%.*s'",
+ msg (D_LOW, "No valid translation found for TLS cipher '%.*s'",
constrain_int(current_cipher_len, 0, 256), current_cipher);
}
else