From: Daniel Stenberg Date: Tue, 12 Jun 2001 18:22:52 +0000 (+0000) Subject: removed a failf() that would overwrite the previous error message X-Git-Tag: curl-7_8_1-pre3~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e39e6c537ed575e2480dea1ef656cce32d726d17;p=curl removed a failf() that would overwrite the previous error message --- diff --git a/lib/ssluse.c b/lib/ssluse.c index 0d50c07f4..d91cf5f7b 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -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; } }