Add a missing 'the' to a log message
authorFabian Keil <fk@fabiankeil.de>
Tue, 25 Feb 2020 12:20:54 +0000 (13:20 +0100)
committerFabian Keil <fk@fabiankeil.de>
Wed, 26 Feb 2020 07:28:08 +0000 (08:28 +0100)
ssl.c

diff --git a/ssl.c b/ssl.c
index 1425879..ccc1b10 100644 (file)
--- a/ssl.c
+++ b/ssl.c
@@ -802,7 +802,7 @@ extern int create_server_ssl_connection(struct client_state *csp)
     * Handshake with server
     */
    log_error(LOG_LEVEL_CONNECT,
-      "Performing the TLS/SSL handshake with server");
+      "Performing the TLS/SSL handshake with the server");
 
    while ((ret = mbedtls_ssl_handshake(&(csp->mbedtls_server_attr.ssl))) != 0)
    {