mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
Use gnutls_strerror() for clearer error message.
This commit is contained in:
parent
31def9e217
commit
455087faae
@ -168,8 +168,7 @@ static CURLcode handshake(struct connectdata *conn,
|
||||
} while(1);
|
||||
|
||||
if (rc < 0) {
|
||||
failf(data, "gnutls_handshake() failed: %d", rc);
|
||||
/* gnutls_perror(ret); */
|
||||
failf(data, "gnutls_handshake() failed: %s", gnutls_strerror(rc));
|
||||
return CURLE_SSL_CONNECT_ERROR;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user