From b60208dd8fe3328a5db8be1dc958e62c9898a73b Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Wed, 25 Oct 2000 03:31:15 +0000 Subject: Fix for bug #1068 from Kent Robotti Call perror and exit instead of fatalError --- coreutils/dd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'coreutils/dd.c') diff --git a/coreutils/dd.c b/coreutils/dd.c index 01441c314..1002c0771 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -116,7 +116,8 @@ extern int dd_main(int argc, char **argv) * here anyways... */ /* free(buf); */ - fatalError( inFile); + perror(inFile); + exit(FALSE); } if (outFile == NULL) @@ -131,7 +132,8 @@ extern int dd_main(int argc, char **argv) /* close(inFd); free(buf); */ - fatalError( outFile); + perror(outFile); + exit(FALSE); } lseek(inFd, (off_t) (skipBlocks * blockSize), SEEK_SET); -- cgit v1.2.3