summaryrefslogtreecommitdiffstats
path: root/crypto/dsa/dsa_locl.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-04-05 13:24:14 +0200
committerRichard Levitte <levitte@openssl.org>2017-04-10 12:11:00 +0200
commit6a32a3c058dbd9fa7cec5b020e4f027808972e4a (patch)
tree3b6866f56415b00da3c056243607c29b32965568 /crypto/dsa/dsa_locl.h
parent31ae516116343defd39d5b5ee800fa25eeab7638 (diff)
Act on deprecation of LONG and ZLONG, step 2
Replace all remaining uses of LONG and ZLONG with INT32 / ZINT32. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3126)
Diffstat (limited to 'crypto/dsa/dsa_locl.h')
-rw-r--r--crypto/dsa/dsa_locl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dsa/dsa_locl.h b/crypto/dsa/dsa_locl.h
index f575195c37..a81a4b4978 100644
--- a/crypto/dsa/dsa_locl.h
+++ b/crypto/dsa/dsa_locl.h
@@ -16,7 +16,7 @@ struct dsa_st {
* instead of of a EVP_PKEY
*/
int pad;
- long version;
+ int32_t version;
BIGNUM *p;
BIGNUM *q; /* == 20 */
BIGNUM *g;