aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-10-16 16:22:27 +0000
committerMatt Kraai <kraai@debian.org>2000-10-16 16:22:27 +0000
commit4f94e826cf61086639bddcd2cd44bd40faee0712 (patch)
tree4f5d2604ef5bcbc289b5e49548f1f10b7aa2b5fa
parent567cdd1d517103e74153d0c45713f72457a702ab (diff)
downloadbusybox-w32-4f94e826cf61086639bddcd2cd44bd40faee0712.tar.gz
busybox-w32-4f94e826cf61086639bddcd2cd44bd40faee0712.tar.bz2
busybox-w32-4f94e826cf61086639bddcd2cd44bd40faee0712.zip
Remove broken error test found by Bryan Rittmeyer <bryan@ixiacom.com>.
-rw-r--r--utility.c5
1 files changed, 0 insertions, 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)
1637 if ((file = wfopen(filename, "r")) == NULL) 1637 if ((file = wfopen(filename, "r")) == NULL)
1638 return FALSE; 1638 return FALSE;
1639 print_file(file); 1639 print_file(file);
1640 if (errno) {
1641 errorMsg("%s: %s\n", filename, strerror(errno));
1642 errno = 0;
1643 return FALSE;
1644 }
1645 return TRUE; 1640 return TRUE;
1646} 1641}
1647#endif /* BB_CAT */ 1642#endif /* BB_CAT */