summaryrefslogtreecommitdiffstats
path: root/crypto/dsa/dsa_ossl.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2007-02-07 20:49:58 +0000
committerNils Larsch <nils@openssl.org>2007-02-07 20:49:58 +0000
commitb3bad17d1a5bc7f15c15d61bb7115f8a16b1a5e2 (patch)
tree77d4d32139a746e090ea5618d26d61281057b5da /crypto/dsa/dsa_ossl.c
parentfeaaf1dbead77e0f0ef280c60578b318097d3c38 (diff)
remove unused variable
Diffstat (limited to 'crypto/dsa/dsa_ossl.c')
-rw-r--r--crypto/dsa/dsa_ossl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dsa/dsa_ossl.c b/crypto/dsa/dsa_ossl.c
index 96df46b70d..dc5d4b3f0b 100644
--- a/crypto/dsa/dsa_ossl.c
+++ b/crypto/dsa/dsa_ossl.c
@@ -134,7 +134,7 @@ static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
BIGNUM m;
BIGNUM xr;
BN_CTX *ctx=NULL;
- int i, j, reason=ERR_R_BN_LIB;
+ int i, reason=ERR_R_BN_LIB;
DSA_SIG *ret=NULL;
BN_init(&m);