diff options
author | Michael Vogt <mvo@debian.org> | 2014-09-29 10:41:31 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-09-29 10:41:31 +0200 |
commit | c36db2b56a08bb7542d0c1be900ee90808efa770 (patch) | |
tree | bc83e8610755c5c1cb57374f2d9e95a5dab966cc /apt-pkg/contrib/fileutl.cc | |
parent | 4c333a25a88b1afac2ed50bf1b9af61dc5b09343 (diff) |
Adjust DestFile in ReverifyAfterIMS() to not include compr Extension
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index df409fa36..c5eb56f0e 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1525,7 +1525,7 @@ bool FileFd::Read(void *To,unsigned long long Size,unsigned long long *Actual) int err; char const * const errmsg = BZ2_bzerror(d->bz2, &err); if (err != BZ_IO_ERROR) - return FileFdError("BZ2_bzread: %s (%d: %s)", _("Read error"), err, errmsg); + return FileFdError("BZ2_bzread: %s %s (%d: %s)", FileName.c_str(), _("Read error"), err, errmsg); } #endif #ifdef HAVE_LZMA |