aboutsummaryrefslogtreecommitdiff
path: root/lib/vtls
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-03-12 15:53:45 +0100
committerDaniel Stenberg <daniel@haxx.se>2015-03-12 15:53:45 +0100
commit1d3f1a80d0da4fb3be20c38fa7ea0809796431fa (patch)
treec7ba45bda1c359c5e8e10e51360000e0c70805d5 /lib/vtls
parenta5d994941c2b19a3c63402caa064c9683647de05 (diff)
openssl: show the cipher selection to use
Diffstat (limited to 'lib/vtls')
-rw-r--r--lib/vtls/openssl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
index 2d41ed4a5..8a4a6a13d 100644
--- a/lib/vtls/openssl.c
+++ b/lib/vtls/openssl.c
@@ -1955,6 +1955,7 @@ static CURLcode ossl_connect_step1(struct connectdata *conn, int sockindex)
failf(data, "failed setting cipher list: %s", ciphers);
return CURLE_SSL_CIPHER;
}
+ infof(data, "Cipher selection: %s\n", ciphers);
#ifdef USE_TLS_SRP
if(data->set.ssl.authtype == CURL_TLSAUTH_SRP) {