diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-24 11:51:27 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-24 11:51:27 +0200 |
commit | 40cdb71e715cf1c8e6d8201da307f992763f1654 (patch) | |
tree | f2409955757210172a47dae68b8c6320dfb02ded /apt-inst/contrib | |
parent | f98233c1b1e93ef1bb595bfc6e59c74d9e05eb6a (diff) | |
parent | 07b2db9b4b2e543b599db97d75ac2315a1676ad8 (diff) |
* 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
Diffstat (limited to 'apt-inst/contrib')
-rw-r--r-- | apt-inst/contrib/arfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-inst/contrib/arfile.cc b/apt-inst/contrib/arfile.cc index e6c63d1ab..8018f4d30 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 |