From e7a8b47f1ad16d47d20aef886ddfa18c1c62385a Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 15 Feb 2006 14:45:31 +0000 Subject: Fix warnings. --- crypto/ts/ts_rsp_sign.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/ts') diff --git a/crypto/ts/ts_rsp_sign.c b/crypto/ts/ts_rsp_sign.c index aa81f74558..ea4506a9ee 100644 --- a/crypto/ts/ts_rsp_sign.c +++ b/crypto/ts/ts_rsp_sign.c @@ -278,7 +278,7 @@ int TS_RESP_CTX_add_md(TS_RESP_CTX *ctx, const EVP_MD *md) if (!ctx->mds && !(ctx->mds = sk_EVP_MD_new_null())) goto err; /* Add the shared md, no copy needed. */ - if (!sk_EVP_MD_push(ctx->mds, md)) goto err; + if (!sk_EVP_MD_push(ctx->mds, (EVP_MD *)md)) goto err; return 1; err: -- cgit v1.2.3