diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-27 14:43:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-27 14:43:27 +0000 |
commit | 47ea7b7f96e0ba76514a4f24177dc0e3e5ec30a0 (patch) | |
tree | 33b84874fcc9b56542da16811ba699a32e35a602 /coreutils/md5_sha1_sum.c | |
parent | ee9cf4862060bfd9bc165e6ae6b37bcb978cf7cb (diff) |
- Matthias Wenzel writes:
without the fix below md5sum will always report a correct md5 on _any_
wrongly formattet input files.
- use short boilerplate and remove superfluous keyword extern.
Diffstat (limited to 'coreutils/md5_sha1_sum.c')
-rw-r--r-- | coreutils/md5_sha1_sum.c | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c index 4f841f638..064340f25 100644 --- a/coreutils/md5_sha1_sum.c +++ b/coreutils/md5_sha1_sum.c @@ -2,19 +2,7 @@ * Copyright (C) 2003 Glenn L. McGrath * Copyright (C) 2003-2004 Erik Andersen * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ #include <fcntl.h> @@ -121,6 +109,8 @@ static int hash_files(int argc, char **argv, const uint8_t hash_algo) if (flags & FLAG_WARN) { bb_error_msg("Invalid format"); } + count_failed++; + return_value = EXIT_FAILURE; free(line); continue; } @@ -177,14 +167,14 @@ static int hash_files(int argc, char **argv, const uint8_t hash_algo) } #ifdef CONFIG_MD5SUM -extern int md5sum_main(int argc, char **argv) +int md5sum_main(int argc, char **argv) { return(hash_files(argc, argv, HASH_MD5)); } #endif #ifdef CONFIG_SHA1SUM -extern int sha1sum_main(int argc, char **argv) +int sha1sum_main(int argc, char **argv) { return(hash_files(argc, argv, HASH_SHA1)); } |