From 4f94e826cf61086639bddcd2cd44bd40faee0712 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Mon, 16 Oct 2000 16:22:27 +0000 Subject: [PATCH] Remove broken error test found by Bryan Rittmeyer . --- utility.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/utility.c b/utility.c index 11ade982b..c8a1820d8 100644 --- a/utility.c +++ b/utility.c @@ -1637,11 +1637,6 @@ extern int print_file_by_name(char *filename) if ((file = wfopen(filename, "r")) == NULL) return FALSE; print_file(file); - if (errno) { - errorMsg("%s: %s\n", filename, strerror(errno)); - errno = 0; - return FALSE; - } return TRUE; } #endif /* BB_CAT */