aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2008-11-11 07:08:59 +0000
committerBodo Möller <bodo@openssl.org>2008-11-11 07:08:59 +0000
commit0a8c9f7de1b0fd0047afa36dfa2bdc0dfbd04306 (patch)
treea0dcee5682193ebca9c058f7eef7e12bf2b9c300 /crypto/bn/bn.h
parent7b808412c902553ee8987f209c3fd8b1e1ba5274 (diff)
downloadopenssl-0a8c9f7de1b0fd0047afa36dfa2bdc0dfbd04306.tar.gz
symbol deobnoxification
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index 3a8d694bb6..971e55053b 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -754,12 +754,12 @@ int RAND_pseudo_bytes(unsigned char *buf,int num);
#define bn_correct_top(a) \
{ \
BN_ULONG *ftl; \
- int _t371q = (a)->top; \
- if (_t371q > 0) \
+ int tmp_top = (a)->top; \
+ if (tmp_top > 0) \
{ \
- for (ftl= &((a)->d[_t371q-1]); _t371q > 0; _t371q--) \
+ for (ftl= &((a)->d[tmp_top-1]); tmp_top > 0; tmp_top--) \
if (*(ftl--)) break; \
- (a)->top = _t371q; \
+ (a)->top = tmp_top; \
} \
bn_pollute(a); \
}