summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mir_app/src/netlib_ssl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mir_app/src/netlib_ssl.cpp b/src/mir_app/src/netlib_ssl.cpp
index 9946658bde..1f8ffe5f2c 100644
--- a/src/mir_app/src/netlib_ssl.cpp
+++ b/src/mir_app/src/netlib_ssl.cpp
@@ -360,13 +360,13 @@ MIR_APP_DLL(int) Netlib_StartSsl(HNETLIBCONN hConnection, const char *szHost)
szHost = nlc->nloc.szHost;
szHost = NEWSTR_ALLOCA(szHost);
- Netlib_Logf(nlu, "(%d %s) Starting SSL negotiation", int(nlc->s), szHost);
+ Netlib_Logf(nlu, "(%d %s) Starting SSL/TLS negotiation", int(nlc->s), szHost);
nlc->hSsl = Netlib_SslConnect(nlc->s, szHost, nlu->settings.validateSSL);
if (nlc->hSsl == nullptr)
- Netlib_Logf(nlu, "(%d %s) Failure to negotiate SSL connection", int(nlc->s), szHost);
+ Netlib_Logf(nlu, "(%d %s) Failure to negotiate SSL/TLS connection", int(nlc->s), szHost);
else
- Netlib_Logf(nlu, "(%d %s) SSL negotiation successful", int(nlc->s), szHost);
+ Netlib_Logf(nlu, "(%d %s) SSL/TLS negotiation successful", int(nlc->s), szHost);
return nlc->hSsl != nullptr;
}