aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/md5_sha1_sum.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c
index 064340f25..287c2f524 100644
--- a/coreutils/md5_sha1_sum.c
+++ b/coreutils/md5_sha1_sum.c
@@ -142,15 +142,6 @@ static int hash_files(int argc, char **argv, const uint8_t hash_algo)
142 } else 142 } else
143#endif 143#endif
144 { 144 {
145 uint8_t hash_length;
146
147 if (hash_algo == HASH_MD5) {
148 hash_length = 16;
149 } else {
150 hash_length = 20;
151 }
152 hash_value = xmalloc(hash_length);
153
154 while (optind < argc) { 145 while (optind < argc) {
155 char *file_ptr = argv[optind++]; 146 char *file_ptr = argv[optind++];
156 147