diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-11-09 19:46:44 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-11-09 19:46:44 +0000 |
commit | a3371852091e3590bd425f2674b56ae3d5ae2445 (patch) | |
tree | 1efb64231e99eb48ed30864c50751e9bf7ea9e24 /apt-pkg/acquire-item.cc | |
parent | 025b8a36fa50680dd1549426c5906363ddaebd02 (diff) |
* turn off "secure-acquire" when --allow-unauthenticated is given
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r-- | apt-pkg/acquire-item.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index dea68f3ee..debd1face 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -770,6 +770,12 @@ pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources, } } + // "allow-unauthenticated" restores apts old fetching behaviour + // that means that e.g. unauthenticated file:// uris are higher + // priority than authenticated http:// uris + if (_config->FindB("APT::Get::AllowUnauthenticated",false) == true) + Trusted = false; + // Select a source if (QueueNext() == false && _error->PendingError() == false) _error->Error(_("I wasn't able to locate file for the %s package. " |