aboutsummaryrefslogtreecommitdiff
path: root/crypto/evp/m_dss.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/m_dss.c')
-rw-r--r--crypto/evp/m_dss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/m_dss.c b/crypto/evp/m_dss.c
index 6c5916e..1a10f67 100644
--- a/crypto/evp/m_dss.c
+++ b/crypto/evp/m_dss.c
@@ -63,7 +63,7 @@
#include <openssl/x509.h>
#ifndef OPENSSL_NO_SHA
-static EVP_MD dsa_md=
+static const EVP_MD dsa_md=
{
NID_dsaWithSHA,
NID_dsaWithSHA,
@@ -76,7 +76,7 @@ static EVP_MD dsa_md=
sizeof(EVP_MD *)+sizeof(SHA_CTX),
};
-EVP_MD *EVP_dss(void)
+const EVP_MD *EVP_dss(void)
{
return(&dsa_md);
}