From: Michael Vogt Date: Thu, 24 Sep 2009 07:32:20 +0000 (+0200) Subject: * apt-inst/contrib/arfile.cc: X-Git-Tag: 0.7.24~3^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/07b2db9b4b2e543b599db97d75ac2315a1676ad8?hp=--cc * apt-inst/contrib/arfile.cc: - show propper error message for Invalid archive members --- 07b2db9b4b2e543b599db97d75ac2315a1676ad8 diff --git a/apt-inst/contrib/arfile.cc b/apt-inst/contrib/arfile.cc index 7c85f2e86..8f30355ed 100644 --- a/apt-inst/contrib/arfile.cc +++ b/apt-inst/contrib/arfile.cc @@ -87,7 +87,7 @@ bool ARArchive::LoadHeaders() StrToNum(Head.Size,Memb->Size,sizeof(Head.Size)) == false) { delete Memb; - return _error->Error(_("Invalid archive member header")); + return _error->Error(_("Invalid archive member header %s"), Head.Name); } // Check for an extra long name string diff --git a/debian/changelog b/debian/changelog index a27f958b9..cad223833 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ apt (0.7.22.4) unstable; urgency=low * apt-pkg/deb/dpkgpm.cc: - when tcgetattr() returns non-zero skip all pty magic (thanks to Simon Richter, closes: #509866) + * apt-inst/contrib/arfile.cc: + - show propper error message for Invalid archive members -- Michael Vogt Mon, 31 Aug 2009 11:08:03 +0200