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

Bjrn Stenberg corrected the silly '(void)data' usage when SSL is not

used
parent 72a7fd4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -358,7 +358,7 @@ Curl_SSLConnect(struct connectdata *conn)
  X509_free(conn->ssl.server_cert);
#else /* USE_SSLEAY */
  /* this is for "-ansi -Wall -pedantic" to stop complaining!   (rabe) */
  (void) data;
  (void) conn;
#endif
  return 0;
}