Commit 70a69f37 authored by Jay Satiro's avatar Jay Satiro
Browse files

SSL: fix unused parameter warnings

parent c96d96bc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2753,6 +2753,8 @@ static CURLcode Curl_darwinssl_random(struct Curl_easy *data UNUSED_PARAM,
  size_t i;
  u_int32_t random_number = 0;

  (void)data;

  for(i = 0 ; i < length ; i++) {
    if(i % sizeof(u_int32_t) == 0)
      random_number = arc4random();
+1 −0
Original line number Diff line number Diff line
@@ -1028,6 +1028,7 @@ static void Curl_mbedtls_sha256sum(const unsigned char *input,
                                    unsigned char *sha256sum,
                                    size_t sha256len UNUSED_PARAM)
{
  (void)sha256len;
  mbedtls_sha256(input, inputlen, sha256sum, 0);
}

+1 −0
Original line number Diff line number Diff line
@@ -887,6 +887,7 @@ static void Curl_polarssl_sha256sum(const unsigned char *input,
                                    unsigned char *sha256sum,
                                    size_t sha256len UNUSED_PARAM)
{
  (void)sha256len;
  sha256(input, inputlen, sha256sum, 0);
}

+2 −0
Original line number Diff line number Diff line
@@ -1655,6 +1655,8 @@ static CURLcode Curl_schannel_random(struct Curl_easy *data UNUSED_PARAM,
{
  HCRYPTPROV hCryptProv = 0;

  (void)data;

  if(!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL,
                          CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
    return CURLE_FAILED_INIT;