summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-pkg/deb/debindexfile.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc
index 3ceeffdca..b3b77dad7 100644
--- a/apt-pkg/deb/debindexfile.cc
+++ b/apt-pkg/deb/debindexfile.cc
@@ -161,14 +161,10 @@ debPackagesIndex::debPackagesIndex(string URI,string Dist,string Section,bool Tr
string debPackagesIndex::ArchiveURI(string File) const
{
- // FIXME: Remove as soon as pdiff support is offical
- string remap = _config->Find("APT::Diffs::Remap::"+URI,"");
+ // FIXME: EVIL! Remove as soon as pdiff support is offical
+ string remap = _config->Find("APT::URL-Remap::"+URI,"");
if(!remap.empty())
- {
- std::cout << "doing a evil remapping to the URI as requested!\n";
- std::cout << URI << " -> " << remap << std::endl;
return remap+File;
- }
return URI + File;
}