mirror of
https://github.com/curl/curl.git
synced 2026-07-24 16:47:16 +03:00
prevent compiler warning
This commit is contained in:
parent
a737864a1c
commit
cf3f1ef284
1 changed files with 1 additions and 1 deletions
|
|
@ -1050,7 +1050,7 @@ static void ssl_tls_trace(int direction, int ssl_ver, int content_type,
|
|||
Curl_debug(data, CURLINFO_TEXT, ssl_buf, txt_len, NULL);
|
||||
|
||||
Curl_debug(data, (direction == 1) ? CURLINFO_SSL_DATA_OUT :
|
||||
CURLINFO_SSL_DATA_IN, buf, len, NULL);
|
||||
CURLINFO_SSL_DATA_IN, (char *)buf, len, NULL);
|
||||
(void) ssl;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue