diff options
Diffstat (limited to 'src/IO')
-rw-r--r-- | src/IO/tls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IO/tls.c b/src/IO/tls.c index b35756fa..91b69be0 100644 --- a/src/IO/tls.c +++ b/src/IO/tls.c @@ -981,8 +981,8 @@ static void Tls_connect(int fd, int connkey) MSG("mbedtls_ssl_handshake() failed: 'Processing of the " "ServerKeyExchange handshake message failed.'\n"); } else if (ret == MBEDTLS_ERR_SSL_CONN_EOF) { - MSG("mbedtls_ssl_handshake() failed: 'Read EOF. Connection closed " - "by server.\n"); + MSG("mbedtls_ssl_handshake() failed: Read EOF. Connection closed by " + "server.\n"); } else { MSG("mbedtls_ssl_handshake() failed with error -0x%04x\n", -ret); } |