removed a failf() that would overwrite the previous error message

This commit is contained in:
Daniel Stenberg 2001-06-12 18:22:52 +00:00
parent 4e4a899306
commit e39e6c537e
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ Curl_SSLConnect(struct connectdata *conn)
if(data->cert) {
if (!cert_stuff(conn, data->cert, data->cert)) {
failf(data, "couldn't use certificate!\n");
/* failf() is already done in cert_stuff() */
return CURLE_SSL_CONNECT_ERROR;
}
}