From e39e6c537ed575e2480dea1ef656cce32d726d17 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Tue, 12 Jun 2001 18:22:52 +0000
Subject: [PATCH] removed a failf() that would overwrite the previous error
 message

---
 lib/ssluse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
     }
   }