More stuff.
[oweals/busybox.git] / util-linux / more.c
index 745ae2bc4c516cbcfbbfec2329eae2754f92e105..bc3850510205b8d454eeb31e28668e5fde843b8b 100644 (file)
@@ -1,7 +1,11 @@
 /*
  * Mini more implementation for busybox
  *
- * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
+ *
+ * Copyright (C) 1999 by Lineo, inc.
+ * Blended by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * based on the original more implementation and code from the Debian 
+ * boot-floppies team.
  *
  * 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
@@ -79,7 +83,7 @@ extern int more_main(int argc, char **argv)
            file = fopen(*argv, "r");
 
        if (file == NULL) {
-           perror("Can't open file");
+           perror(*argv);
            exit(FALSE);
        }
        fstat(fileno(file), &st);