diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2001-06-12 18:22:52 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2001-06-12 18:22:52 +0000 | 
| commit | e39e6c537ed575e2480dea1ef656cce32d726d17 (patch) | |
| tree | 79ee211d965d4c7584a9cf076a9cc7bd7c867242 | |
| parent | 4e4a899306ad7256847a1a6794bc0ac94ae3a577 (diff) | |
removed a failf() that would overwrite the previous error message
| -rw-r--r-- | lib/ssluse.c | 2 | 
1 files changed, 1 insertions, 1 deletions
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;      }    }  | 
