Fix typo.

Obtained from:	DragonFly
This commit is contained in:
Xin LI 2007-01-31 07:13:25 +00:00
parent 37a5c137f0
commit 161c3dc4b0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166363

View File

@ -1122,7 +1122,7 @@ check_outfile(const char *outfile)
"overwrite (y or n)? " , outfile);
(void)fgets(ans, sizeof(ans) - 1, stdin);
if (ans[0] != 'y' && ans[0] != 'Y') {
fprintf(stderr, "\tnot overwritting\n");
fprintf(stderr, "\tnot overwriting\n");
ok = 0;
} else
unlink(outfile);