diff options
| -rw-r--r-- | lib/ssluse.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index 0af7da41e..b2bb3bbe4 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -1098,8 +1098,8 @@ static void ssl_tls_trace(int direction, int ssl_ver, int content_type,    msg_type = *(char*)buf;    msg_name = ssl_msg_type(ssl_ver, msg_type); -  txt_len = 1 + snprintf(ssl_buf, sizeof(ssl_buf), "SSLv%c, %s%s (%d):\n", -                         ver, tls_rt_name, msg_name, msg_type); +  txt_len = snprintf(ssl_buf, sizeof(ssl_buf), "SSLv%c, %s%s (%d):\n", +                     ver, tls_rt_name, msg_name, msg_type);    Curl_debug(data, CURLINFO_TEXT, ssl_buf, txt_len, NULL);    Curl_debug(data, (direction == 1) ? CURLINFO_SSL_DATA_OUT :  | 
