summaryrefslogtreecommitdiffstats
path: root/crypto/evp/bio_md.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-03-22 17:55:18 +0000
committerNils Larsch <nils@openssl.org>2005-03-22 17:55:18 +0000
commit41e455bfc43b9815f5b6d7498601fdd508c80dc2 (patch)
treee453dc40c0cb7223c0fa166ed86e5b20420462d9 /crypto/evp/bio_md.c
parent59b6836ab2cff27c9d7062699abcbf805350b8ad (diff)
test, remove unnecessary const cast
Diffstat (limited to 'crypto/evp/bio_md.c')
-rw-r--r--crypto/evp/bio_md.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/bio_md.c b/crypto/evp/bio_md.c
index 27ec62f4b5..76ff9fe815 100644
--- a/crypto/evp/bio_md.c
+++ b/crypto/evp/bio_md.c
@@ -153,7 +153,7 @@ static int md_write(BIO *b, const char *in, int inl)
{
if (ret > 0)
{
- EVP_DigestUpdate(ctx,(unsigned char *)in,
+ EVP_DigestUpdate(ctx,(const unsigned char *)in,
(unsigned int)ret);
}
}