diff options
Diffstat (limited to 'source4/heimdal/lib/hcrypto/sha.c')
-rw-r--r-- | source4/heimdal/lib/hcrypto/sha.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/heimdal/lib/hcrypto/sha.c b/source4/heimdal/lib/hcrypto/sha.c index 062f70509c..9c8b39e241 100644 --- a/source4/heimdal/lib/hcrypto/sha.c +++ b/source4/heimdal/lib/hcrypto/sha.c @@ -240,13 +240,13 @@ SHA1_Update (struct sha *m, const void *v, size_t len) if(offset == 64){ #if !defined(WORDS_BIGENDIAN) || defined(_CRAY) int i; - uint32_t current[16]; - struct x32 *u = (struct x32*)m->save; + uint32_t SHA1current[16]; + struct x32 *us = (struct x32*)m->save; for(i = 0; i < 8; i++){ - current[2*i+0] = swap_uint32_t(u[i].a); - current[2*i+1] = swap_uint32_t(u[i].b); + SHA1current[2*i+0] = swap_uint32_t(us[i].a); + SHA1current[2*i+1] = swap_uint32_t(us[i].b); } - calc(m, current); + calc(m, SHA1current); #else calc(m, (uint32_t*)m->save); #endif |