Commit e39e6c53 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent 4e4a8993
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }
  }