aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-27 16:39:13 +0000
committerMatt Caswell <matt@openssl.org>2015-01-28 10:57:14 +0000
commit55467a16c2baf798ebcb627835654524cf8598a1 (patch)
tree9ace3748dadf33dc3308ba44bb8301bbd7eebbd6 /crypto
parentdc0e9a35fa89c262833d6b498108acc58a70bdcb (diff)
downloadopenssl-55467a16c2baf798ebcb627835654524cf8598a1.tar.gz
Fix warning on some compilers where variable index shadows a global
declaration Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/modes/ocb128.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/modes/ocb128.c b/crypto/modes/ocb128.c
index a3224108c3..cbcb7f62dd 100644
--- a/crypto/modes/ocb128.c
+++ b/crypto/modes/ocb128.c
@@ -151,10 +151,10 @@ static void ocb_block_xor(const unsigned char *in1,
* Lookup L_index in our lookup table. If we haven't already got it we need to
* calculate it
*/
-static OCB_BLOCK *ocb_lookup_l(OCB128_CONTEXT *ctx, size_t index)
+static OCB_BLOCK *ocb_lookup_l(OCB128_CONTEXT *ctx, size_t idx)
{
- if (index <= ctx->l_index) {
- return ctx->l + index;
+ if (idx <= ctx->l_index) {
+ return ctx->l + idx;
}
/* We don't have it - so calculate it */
@@ -166,9 +166,9 @@ static OCB_BLOCK *ocb_lookup_l(OCB128_CONTEXT *ctx, size_t index)
if (!ctx->l)
return NULL;
}
- ocb_double(ctx->l + (index - 1), ctx->l + index);
+ ocb_double(ctx->l + (idx - 1), ctx->l + idx);
- return ctx->l + index;
+ return ctx->l + idx;
}
/*