Commit 7b913444 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

fix compiler warning with a cast.

parent 909fdc07
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1282,7 +1282,7 @@ CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex)
  SSL_SetURL(connssl->handle, conn->host.name);
  SSL_SetURL(connssl->handle, conn->host.name);


  /* Force the handshake now */
  /* Force the handshake now */
  timeout = PR_MillisecondsToInterval(Curl_timeleft(conn, NULL, TRUE));
  timeout = PR_MillisecondsToInterval((PRUint32)Curl_timeleft(conn, NULL, TRUE));
  if(SSL_ForceHandshakeWithTimeout(connssl->handle, timeout) != SECSuccess) {
  if(SSL_ForceHandshakeWithTimeout(connssl->handle, timeout) != SECSuccess) {
    if(conn->data->set.ssl.certverifyresult == SSL_ERROR_BAD_CERT_DOMAIN)
    if(conn->data->set.ssl.certverifyresult == SSL_ERROR_BAD_CERT_DOMAIN)
      curlerr = CURLE_PEER_FAILED_VERIFICATION;
      curlerr = CURLE_PEER_FAILED_VERIFICATION;