Continue concatenating files even if we can't open one.

This commit is contained in:
Matt Kraai
2000-09-27 03:01:40 +00:00
parent bbaef66b3f
commit e7c1af1e0d
3 changed files with 12 additions and 9 deletions

View File

@ -1636,12 +1636,13 @@ extern int print_file_by_name(char *filename)
FILE *file;
file = fopen(filename, "r");
if (file == NULL) {
errorMsg("%s: %s\n", filename, strerror(errno));
return FALSE;
}
print_file(file);
return TRUE;
}
#endif /* BB_CAT || BB_LSMOD */
#endif /* BB_CAT */
#if defined BB_ECHO || defined BB_TR
char process_escape_sequence(char **ptr)