summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-11-27 17:33:34 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-11-27 17:33:34 +0000
commit4d6af5c5d293c04715b203be00d2405fb4c0478c (patch)
tree5372bdf18f537ad04f5950a998a6c94035fc0369 /crypto
parentefed63d7839cf5bf6113efcd296ebeabc1cbcbe4 (diff)
../comm.txt
Diffstat (limited to 'crypto')
-rw-r--r--crypto/evp/p_sign.c2
-rw-r--r--crypto/evp/p_verify.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/p_sign.c b/crypto/evp/p_sign.c
index bf41a0db68..782d14055a 100644
--- a/crypto/evp/p_sign.c
+++ b/crypto/evp/p_sign.c
@@ -81,7 +81,7 @@ int EVP_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, unsigned int *siglen,
unsigned char m[EVP_MAX_MD_SIZE];
unsigned int m_len;
int i,ok=0,v;
- MS_STATIC EVP_MD_CTX tmp_ctx;
+ EVP_MD_CTX tmp_ctx;
*siglen=0;
for (i=0; i<4; i++)
diff --git a/crypto/evp/p_verify.c b/crypto/evp/p_verify.c
index 2d46dffe7e..072c127951 100644
--- a/crypto/evp/p_verify.c
+++ b/crypto/evp/p_verify.c
@@ -68,7 +68,7 @@ int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
unsigned char m[EVP_MAX_MD_SIZE];
unsigned int m_len;
int i,ok=0,v;
- MS_STATIC EVP_MD_CTX tmp_ctx;
+ EVP_MD_CTX tmp_ctx;
for (i=0; i<4; i++)
{