From 86ab8a32bd63b2f2a73bdcead8e2bb037589e175 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 2 Jun 2000 03:21:42 +0000 Subject: A number of additional fixed from Pavel Roskin, note some more bugs in the TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik --- tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tail.c') diff --git a/tail.c b/tail.c index 3b3e2f56c..2027d921d 100644 --- a/tail.c +++ b/tail.c @@ -336,7 +336,7 @@ static int tail_file(const char *filename, off_t n_units) /* Not standard input. */ fd = open(filename, O_RDONLY); if (fd == -1) - fatalError("open error"); + perror(filename); errors = tail_lines(filename, fd, (long) n_units); close(fd); -- cgit v1.2.3