Commit 1c680e35 authored by Michael Kaufmann's avatar Michael Kaufmann
Browse files

schannel: fix "no previous prototype" compiler warning

parent f886cbfe
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -1939,7 +1939,7 @@ static void Curl_schannel_checksum(const unsigned char *input,
    CryptReleaseContext(hProv, 0);
}

CURLcode Curl_schannel_md5sum(unsigned char *input,
static CURLcode Curl_schannel_md5sum(unsigned char *input,
                                     size_t inputlen,
                                     unsigned char *md5sum,
                                     size_t md5len)
@@ -1949,7 +1949,7 @@ CURLcode Curl_schannel_md5sum(unsigned char *input,
    return CURLE_OK;
}

void Curl_schannel_sha256sum(const unsigned char *input,
static void Curl_schannel_sha256sum(const unsigned char *input,
                                    size_t inputlen,
                                    unsigned char *sha256sum,
                                    size_t sha256len)