summaryrefslogtreecommitdiff
path: root/apt-pkg/indexfile.cc
diff options
context:
space:
mode:
authorCoolStar <coolstarorganization@gmail.com>2018-12-20 15:11:31 -0800
committerSam Bingner <sam@bingner.com>2019-12-26 15:24:12 -1000
commit8d1277b777045f45ffae210edea608c27587d7a2 (patch)
tree7e99593eea9e5e1c3167057f0ca77547c0e1993a /apt-pkg/indexfile.cc
parentf500e1fbad17354e04e3c4af7295759dd599925f (diff)
APT 1.7.0-sileo
Diffstat (limited to 'apt-pkg/indexfile.cc')
-rw-r--r--apt-pkg/indexfile.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/apt-pkg/indexfile.cc b/apt-pkg/indexfile.cc
index 85d0e87cd..515208525 100644
--- a/apt-pkg/indexfile.cc
+++ b/apt-pkg/indexfile.cc
@@ -203,6 +203,10 @@ pkgDebianIndexTargetFile::pkgDebianIndexTargetFile(IndexTarget const &Target, bo
/*}}}*/
std::string pkgDebianIndexTargetFile::ArchiveURI(std::string const &File) const/*{{{*/
{
+ std::string httpprefix = "http://";
+ std::string httpsprefix = "https://";
+ if (File.substr(0, httpprefix.size()) == httpprefix || File.substr(0, httpsprefix.size()) == httpsprefix)
+ return File;
return Target.Option(IndexTarget::REPO_URI) + File;
}
/*}}}*/