- Fix typo in tar error message (Closes: #191424)
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:01:55 +0000 (17:01 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:01:55 +0000 (17:01 +0000)
Author: mdz
Date: 2003-07-18 15:35:23 GMT
- Fix typo in tar error message (Closes: #191424)

apt-inst/contrib/extracttar.cc
debian/changelog

index fcfc899..5d939bd 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: extracttar.cc,v 1.7 2003/02/10 00:36:12 doogie Exp $
+// $Id: extracttar.cc,v 1.8 2003/07/18 15:35:23 mdz Exp $
 /* ######################################################################
 
    Extract a Tar - Tar Extractor
@@ -292,7 +292,7 @@ bool ExtractTar::Go(pkgDirStream &Stream)
         
         default:
         BadRecord = true;
-        _error->Warning(_("Unkown TAR header type %u, member %s"),(unsigned)Tar->LinkFlag,Tar->Name);
+        _error->Warning(_("Unknown TAR header type %u, member %s"),(unsigned)Tar->LinkFlag,Tar->Name);
         break;
       }
       
index 5a19465..cd02a3b 100644 (file)
@@ -21,6 +21,7 @@ apt (0.5.6) unstable; urgency=low
     - Document in apt-get(8) the meaning of the '*' in ShowList, which is that
       the package is being purged (Closes: #182369)
     - Fix extra "/" character in apt.conf(5) (Closes: #185545)
+    - Fix typo in tar error message (Closes: #191424)
 
  --