Fix for bug #1068 from Kent Robotti

Call perror and exit instead of fatalError
This commit is contained in:
Glenn L McGrath 2000-10-25 03:31:15 +00:00
parent 130005cd89
commit b60208dd8f
2 changed files with 8 additions and 4 deletions

View File

@ -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);

6
dd.c
View File

@ -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);