From 463d899a4f6527fc26d29e4cff31f65028cfa43f Mon Sep 17 00:00:00 2001 From: Troy Benjegerdes Date: Thu, 15 Jun 2006 16:42:24 +0000 Subject: [PATCH] linux-current-already-used-20060615 don;'t conflict on use of current --- src/afs/afs_util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/afs/afs_util.c b/src/afs/afs_util.c index 54e8ce366..eaf9825ee 100644 --- a/src/afs/afs_util.c +++ b/src/afs/afs_util.c @@ -601,13 +601,13 @@ AFS_MD5_Update (struct afs_md5 *m, const void *v, size_t len) if(offset == 64){ #if defined(AFSBIG_ENDIAN) int i; - afs_uint32 current[16]; + afs_uint32 temp[16]; struct x32 *us = (struct x32*)m->save; for(i = 0; i < 8; i++){ - current[2*i+0] = swap_u_int32_t(us[i].a); - current[2*i+1] = swap_u_int32_t(us[i].b); + temp[2*i+0] = swap_u_int32_t(us[i].a); + temp[2*i+1] = swap_u_int32_t(us[i].b); } - calc(m, current); + calc(m, temp); #else calc(m, (afs_uint32*)m->save); #endif -- 2.39.5