summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-inst/contrib/extracttar.cc4
-rw-r--r--debian/changelog1
2 files changed, 3 insertions, 2 deletions
diff --git a/apt-inst/contrib/extracttar.cc b/apt-inst/contrib/extracttar.cc
index fcfc89927..5d939bd80 100644
--- a/apt-inst/contrib/extracttar.cc
+++ b/apt-inst/contrib/extracttar.cc
@@ -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;
}
diff --git a/debian/changelog b/debian/changelog
index 5a19465a9..cd02a3b08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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)
--