Commit 68f7d5b8 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

add cast to silent compiler warning with 64bit systems.

parent e8baa332
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1596,7 +1596,7 @@ ossl_connect_step1(struct connectdata *conn,
  }

  /* pass the raw socket into the SSL layers */
  if(!SSL_set_fd(connssl->handle, sockfd)) {
  if(!SSL_set_fd(connssl->handle, (int)sockfd)) {
     failf(data, "SSL: SSL_set_fd failed: %s",
           ERR_error_string(ERR_get_error(),NULL));
     return CURLE_SSL_CONNECT_ERROR;