Update dasync to use size_t for the sha1 update

Reviewed-by: Matt Caswell <matt@openssl.org>

MR #1350
This commit is contained in:
Kurt Roeckx 2015-11-21 17:58:12 +01:00
parent 68db80e2d1
commit 652d4a8c83
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ static void dummy_pause_job(void);
/* SHA1 */
static int dasync_sha1_init(EVP_MD_CTX *ctx);
static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
unsigned long count);
size_t count);
static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
static const EVP_MD dasync_sha1 = {
@ -269,7 +269,7 @@ static int dasync_sha1_init(EVP_MD_CTX *ctx)
}
static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
unsigned long count)
size_t count)
{
dummy_pause_job();