sed: Exit with failure if open failed

This commit is contained in:
Michael Forney 2020-02-20 21:24:44 -08:00
parent 971c573e87
commit 5cf4544f2c
1 changed files with 3 additions and 1 deletions

4
sed.c
View File

@ -216,6 +216,7 @@ static size_t lineno;
static regex_t *lastre; /* last used regex for empty regex search */
static char **files; /* list of file names from argv */
static FILE *file; /* current file we are reading */
static int ret; /* exit status */
static String patt, hold, genbuf;
@ -1131,6 +1132,7 @@ next_file(void)
} else if (!(file = fopen(*files++, "r"))) {
/* warn this file didn't open, but move on to next */
weprintf("fopen:");
ret = 1;
}
} while (!file && *files);
first = 0;
@ -1694,7 +1696,7 @@ int
main(int argc, char *argv[])
{
char *arg;
int ret = 0, script = 0;
int script = 0;
ARGBEGIN {
case 'n':