diff options
author | Alexander Færøy <ahf@0x90.dk> | 2016-10-16 14:25:19 +0200 |
---|---|---|
committer | Alexander Færøy <ahf@0x90.dk> | 2016-10-22 21:58:49 +0200 |
commit | 1d101afe0d5e552f08bf87bcc242bcaf2db972f7 (patch) | |
tree | 9527fbbea3f997517e8c5c0be0fd41f6056e2771 /src | |
parent | 13f75d49e05b4e29104ef52ee1742564c7eed8df (diff) | |
download | irssi-1d101afe0d5e552f08bf87bcc242bcaf2db972f7.zip |
s/SSL/TLS/ for warning strings.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/network-openssl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c index 8e12bd53..c221624f 100644 --- a/src/core/network-openssl.c +++ b/src/core/network-openssl.c @@ -481,7 +481,7 @@ static GIOChannel *irssi_ssl_get_iochannel(GIOChannel *handle, int port, SERVER_ if (capath && *capath) scapath = convert_home(capath); if (! SSL_CTX_load_verify_locations(ctx, scafile, scapath)) { - g_warning("Could not load CA list for verifying SSL server certificate"); + g_warning("Could not load CA list for verifying TLS server certificate"); g_free(scafile); g_free(scapath); SSL_CTX_free(ctx); @@ -784,12 +784,12 @@ int irssi_ssl_handshake(GIOChannel *handle) pubkey = X509_get_X509_PUBKEY(cert); if (cert == NULL) { - g_warning("SSL server supplied no certificate"); + g_warning("TLS server supplied no certificate"); return -1; } if (pubkey == NULL) { - g_warning("SSL server supplied no certificate public key"); + g_warning("TLS server supplied no certificate public key"); return -1; } |