diff options
author | Jim Meyering <jim@meyering.net> | 2000-09-17 13:02:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-09-17 13:02:43 +0000 |
commit | eccfa6b591ec0fe77ec50ab46b086be90d31b16d (patch) | |
tree | fd0b9cca58808661cc511ff47f42c515770faaad /lib | |
parent | 1778e4177387676af15afea3c992e95cfb3cc466 (diff) | |
download | coreutils-eccfa6b591ec0fe77ec50ab46b086be90d31b16d.tar.xz |
shrink tmp array length from 80 to 16.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sha.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -249,7 +249,7 @@ sha_process_block (const void *buffer, size_t len, struct sha_ctx *ctx) const md5_uint32 *words = buffer; size_t nwords = len / sizeof (md5_uint32); const md5_uint32 *endp = words + nwords; - md5_uint32 x[80]; + md5_uint32 x[16]; md5_uint32 a = ctx->A; md5_uint32 b = ctx->B; md5_uint32 c = ctx->C; |