- Matthias Wenzel writes:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 27 Oct 2005 14:43:27 +0000 (14:43 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 27 Oct 2005 14:43:27 +0000 (14:43 -0000)
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.

coreutils/md5_sha1_sum.c

index 4f841f6380c10f9ddefd7c4af34cacda2eef39d5..064340f2564656617e475fe117a2ec61734086a8 100644 (file)
@@ -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));
 }