From 161c3dc4b06676e45a798b5110c7d5956ab6d624 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Wed, 31 Jan 2007 07:13:25 +0000 Subject: [PATCH] Fix typo. Obtained from: DragonFly --- usr.bin/gzip/gzip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/gzip/gzip.c b/usr.bin/gzip/gzip.c index 7a3969686d19..6f202c71e225 100644 --- a/usr.bin/gzip/gzip.c +++ b/usr.bin/gzip/gzip.c @@ -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);