aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/m_md4.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/m_md4.c')
-rw-r--r--crypto/evp/m_md4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/m_md4.c b/crypto/evp/m_md4.c
index 133745e8b7..cf429aee5d 100644
--- a/crypto/evp/m_md4.c
+++ b/crypto/evp/m_md4.c
@@ -63,7 +63,7 @@
#include <openssl/objects.h>
#include <openssl/x509.h>
-static EVP_MD md4_md=
+static const EVP_MD md4_md=
{
NID_md4,
0,
@@ -76,7 +76,7 @@ static EVP_MD md4_md=
sizeof(EVP_MD *)+sizeof(MD4_CTX),
};
-EVP_MD *EVP_md4(void)
+const EVP_MD *EVP_md4(void)
{
return(&md4_md);
}