* gzip.c (get_method): Fix typo: "a a" -> "a" in diagnostic. Reported
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 4 Jun 2007 17:49:12 +0000 (17:49 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 4 Jun 2007 17:49:12 +0000 (17:49 +0000)
by Justin Pryzby in Debian bug 426965 <http://bugs.debian.org/426965>.

ChangeLog
gzip.c

index 6843c848a6cd06731131af382a3b76d5a7c78fda..60295582934894d150b625db4d5bde4dcf70bd5d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-04  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * gzip.c (get_method): Fix typo: "a a" -> "a" in diagnostic.  Reported
+       by Justin Pryzby in Debian bug 426965 <http://bugs.debian.org/426965>.
+
 2007-05-07  Paul Eggert  <eggert@cs.ucla.edu>
 
        * NEWS: 'gzip -f foo.gz' now works instead of complaining.
diff --git a/gzip.c b/gzip.c
index da64e37524a7c331f8c29f940e56abfa663ff783..9c4a6d5d421667791affd8477da88c0fd416b600 100644 (file)
--- 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 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;