* archival/bunzip2.c (bunzip2_main): Do not remove files if writing to standard
[oweals/busybox.git] / coreutils / cat.c
index aa8528d6ae53849930b4f7488d75cff5dadf53ef..33f15da71fc3314d7be667b32ca9bbf00e6c6b57 100644 (file)
@@ -2,8 +2,8 @@
 /*
  * Mini Cat implementation for busybox
  *
- * Copyright (C) 1999,2000,2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
  *
  * 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
@@ -37,7 +37,7 @@ extern int cat_main(int argc, char **argv)
        while (--argc > 0) {
                if(!(strcmp(*++argv, "-"))) {
                        print_file(stdin);
-               } else if (print_file_by_name(*argv) == FALSE) {
+               } else if (! print_file_by_name(*argv)) {
                        status = EXIT_FAILURE;
                }
        }