diff options
author | Michael Vogt <mvo@debian.org> | 2011-06-10 13:54:20 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2011-06-10 13:54:20 +0200 |
commit | 68c872643f0b0470debca17b703b7bb6db47dd9f (patch) | |
tree | f4303cf12ec8c50e58a35f4289c3294127572729 /methods/mirror.cc | |
parent | f0b9c328358d16555cb1e94df71f5ee0da04a0ff (diff) | |
parent | 04080cf5a15382f577552fe4ce3e5202dfb24959 (diff) |
merged lp:~mvo/apt/add-library-pkgs
Diffstat (limited to 'methods/mirror.cc')
-rw-r--r-- | methods/mirror.cc | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/methods/mirror.cc b/methods/mirror.cc index 2cf5c9ce1..713dc211a 100644 --- a/methods/mirror.cc +++ b/methods/mirror.cc @@ -134,6 +134,10 @@ bool MirrorMethod::DownloadMirrorFile(string mirror_uri_str) string fetch = BaseUri; fetch.replace(0,strlen("mirror://"),"http://"); + // append the dist as a query string + if (Dist != "") + fetch += "?dist=" + Dist; + if(Debug) clog << "MirrorMethod::DownloadMirrorFile(): '" << fetch << "'" << " to " << MirrorFile << endl; @@ -274,8 +278,18 @@ bool MirrorMethod::InitMirrors() while (!in.eof()) { getline(in, s); - if (s.size() > 0) - AllMirrors.push_back(s); + + // ignore lines that start with # + if (s.find("#") == 0) + continue; + // ignore empty lines + if (s.size() == 0) + continue; + // ignore non http lines + if (s.find("http://") != 0) + continue; + + AllMirrors.push_back(s); } Mirror = AllMirrors[0]; UsedMirror = Mirror; @@ -329,6 +343,7 @@ string MirrorMethod::GetMirrorFileName(string mirror_uri_str) if(Debug) std::cerr << "found BaseURI: " << uristr << std::endl; BaseUri = uristr.substr(0,uristr.size()-1); + Dist = (*I)->GetDist(); } } // get new file |