From 20b17d6b045c26219ee8f2f8ff72b130bd1ff492 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 10 Aug 2005 22:57:14 +0000 Subject: the debug callback was called with CURLINFO_TEXT with the data size one too big --- lib/ssluse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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 : -- cgit v1.2.3