aboutsummaryrefslogtreecommitdiff
path: root/dd.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-10-25 15:10:08 +0000
committerMatt Kraai <kraai@debian.org>2000-10-25 15:10:08 +0000
commit324a778f31ac99f2c9d947a99dc4c37902bde6fe (patch)
tree137420d5835bb40bc9712e895da5377c664bd4b3 /dd.c
parentb60208dd8fe3328a5db8be1dc958e62c9898a73b (diff)
downloadbusybox-324a778f31ac99f2c9d947a99dc4c37902bde6fe.tar.gz
Added a fatalPerror function to simplify error handling.
Diffstat (limited to 'dd.c')
-rw-r--r--dd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/dd.c b/dd.c
index 1002c0771..6868a913e 100644
--- a/dd.c
+++ b/dd.c
@@ -116,8 +116,7 @@ extern int dd_main(int argc, char **argv)
* here anyways... */
/* free(buf); */
- perror(inFile);
- exit(FALSE);
+ fatalPerror("%s", inFile);
}
if (outFile == NULL)
@@ -132,8 +131,7 @@ extern int dd_main(int argc, char **argv)
/* close(inFd);
free(buf); */
- perror(outFile);
- exit(FALSE);
+ fatalPerror("%s", outFile);
}
lseek(inFd, (off_t) (skipBlocks * blockSize), SEEK_SET);