diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2010-11-27 17:37:03 +0000 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2010-11-27 17:37:03 +0000 |
commit | ae3fff50343705e9324d4a91af41ec843de9f3ed (patch) | |
tree | 64639cfafd94032f5fccde54667dfdd3cd5a8df3 /crypto/evp/p_sign.c | |
parent | d0205686bb0c0e471522d12b32deb0d1dd1651a2 (diff) | |
download | openssl-new-ae3fff50343705e9324d4a91af41ec843de9f3ed.tar.gz |
Some of the MS_STATIC use in crypto/evp is a legacy from the days when
EVP_MD_CTX was much larger: it isn't needed anymore.
Diffstat (limited to 'crypto/evp/p_sign.c')
-rw-r--r-- | crypto/evp/p_sign.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/p_sign.c b/crypto/evp/p_sign.c index b11aea9f80..8afb664306 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 = 0,ok = 0,v; - MS_STATIC EVP_MD_CTX tmp_ctx; + EVP_MD_CTX tmp_ctx; EVP_PKEY_CTX *pkctx = NULL; *siglen=0; |