summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_gf2m.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-03-30 15:43:32 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-03-30 15:43:32 +0000
commitd3379de5a97e99bf97067a0ae408d7f55fa9bc5c (patch)
tree0927c58b09e215efa323bf2469532b8da51a3116 /crypto/bn/bn_gf2m.c
parent4736eab947b470a5b6522da2c8f6bf485e363e52 (diff)
don't shadow
Diffstat (limited to 'crypto/bn/bn_gf2m.c')
-rw-r--r--crypto/bn/bn_gf2m.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c
index e54a701166..b2222a06c9 100644
--- a/crypto/bn/bn_gf2m.c
+++ b/crypto/bn/bn_gf2m.c
@@ -631,11 +631,11 @@ int BN_GF2m_mod_inv(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
}
if (ubits==vbits)
{
- BN_ULONG u;
+ BN_ULONG ul;
int utop = (ubits-1)/BN_BITS2;
- while ((u=udp[utop])==0 && utop) utop--;
- ubits = utop*BN_BITS2 + BN_num_bits_word(u);
+ while ((ul=udp[utop])==0 && utop) utop--;
+ ubits = utop*BN_BITS2 + BN_num_bits_word(ul);
}
}
bn_correct_top(b);