summaryrefslogtreecommitdiffstats
path: root/crypto/ts
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-02-15 14:45:31 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-02-15 14:45:31 +0000
commite7a8b47f1ad16d47d20aef886ddfa18c1c62385a (patch)
treeaa4355bdd2e93b899e3c9316b5dfda0ef1191e4d /crypto/ts
parent7ac7a4bc37e56a9e81fb726e928768142ea29c65 (diff)
Fix warnings.
Diffstat (limited to 'crypto/ts')
-rw-r--r--crypto/ts/ts_rsp_sign.c2
1 files changed, 1 insertions, 1 deletions
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: