diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2000-10-25 03:31:15 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2000-10-25 03:31:15 +0000 |
commit | b60208dd8fe3328a5db8be1dc958e62c9898a73b (patch) | |
tree | 00942374f2b528ed316af0671f62962fdc0fc0dd /coreutils | |
parent | 130005cd89514ba6b8a4b29569279c3da44739c4 (diff) | |
download | busybox-b60208dd8fe3328a5db8be1dc958e62c9898a73b.tar.gz |
Fix for bug #1068 from Kent Robotti
Call perror and exit instead of fatalError
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/dd.c | 6 |
1 files changed, 4 insertions, 2 deletions
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); |