From: Paul Eggert Date: Mon, 4 Jun 2007 17:49:12 +0000 (+0000) Subject: * gzip.c (get_method): Fix typo: "a a" -> "a" in diagnostic. Reported X-Git-Tag: v1.3.13~41 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=cdc1615b47fc0d9fb349f8742eb7bd1da2946fe0;p=debian%2Fgzip * gzip.c (get_method): Fix typo: "a a" -> "a" in diagnostic. Reported by Justin Pryzby in Debian bug 426965 . --- diff --git a/ChangeLog b/ChangeLog index 6843c84..6029558 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-04 Paul Eggert + + * gzip.c (get_method): Fix typo: "a a" -> "a" in diagnostic. Reported + by Justin Pryzby in Debian bug 426965 . + 2007-05-07 Paul Eggert * NEWS: 'gzip -f foo.gz' now works instead of complaining. diff --git a/gzip.c b/gzip.c index da64e37..9c4a6d5 100644 --- a/gzip.c +++ b/gzip.c @@ -1273,7 +1273,7 @@ local int get_method(in) } if ((flags & CONTINUATION) != 0) { fprintf(stderr, - "%s: %s is a a multi-part gzip file -- not supported\n", + "%s: %s is a multi-part gzip file -- not supported\n", program_name, ifname); exit_code = ERROR; if (force <= 1) return -1;