diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-29 18:36:26 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-29 18:36:26 +0200 |
commit | a6d40092c61b43698facb721da867738b801b397 (patch) | |
tree | e4b635a8e6770da9817eabb439cf43bb7359b914 /apt-pkg/pkgcachegen.cc | |
parent | d074870043ffcd404e014d5793318427435c3ca1 (diff) | |
parent | e99a544c8c48d8067d008b5c7e4e1d5479529ce2 (diff) |
merged from http+urllib://anonscm.debian.org/bzr/bzr/apt/apt/debian-experimental2/
Diffstat (limited to 'apt-pkg/pkgcachegen.cc')
-rw-r--r-- | apt-pkg/pkgcachegen.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 24e95f2f2..2b6d294fb 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -106,6 +106,9 @@ void pkgCacheGenerator::ReMap(void const * const oldMap, void const * const newM if (oldMap == newMap) return; + if (_config->FindB("Debug::pkgCacheGen", false)) + std::clog << "Remaping from " << oldMap << " to " << newMap << std::endl; + Cache.ReMap(false); CurrentFile += (pkgCache::PackageFile*) newMap - (pkgCache::PackageFile*) oldMap; @@ -685,7 +688,7 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, string const &Version, unsigned int const &Op, unsigned int const &Type, - map_ptrloc *OldDepLast) + map_ptrloc* &OldDepLast) { void const * const oldMap = Map.Data(); // Get a structure |