diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-24 09:32:20 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-24 09:32:20 +0200 |
commit | 07b2db9b4b2e543b599db97d75ac2315a1676ad8 (patch) | |
tree | b6bde0b7716e3dcb3a8772acda1929161e109751 /apt-inst | |
parent | 4e5500361a964f49656a39b001ba246f113f8cdd (diff) |
* apt-inst/contrib/arfile.cc:
- show propper error message for Invalid archive members
Diffstat (limited to 'apt-inst')
-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 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 |