linux-current-already-used-20060615
[openafs.git] / src / afs / afs_util.c
index 54e8ce3..eaf9825 100644 (file)
@@ -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