diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2017-02-15 15:17:52 -0800 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2020-07-17 00:22:23 -1000 |
commit | fc6a4d5435196de691a8f358737cc68d9c5e2095 (patch) | |
tree | 77f8c485c411e64c5796a502d94cb027beb54671 | |
parent | 362bf8e96acd5048e33e3687f39c700b4ddf80d8 (diff) |
Don't download "optional" files not in Release :/.
-rw-r--r-- | apt-pkg/acquire-item.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index bd1c5bd82..fbd561107 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1607,7 +1607,7 @@ void pkgAcqMetaClearSig::QueueIndexes(bool const verify) /*{{{*/ } // optional targets that we do not have in the Release file are skipped - if (hasHashes == true && Target.IsOptional) + if (Target.IsOptional) { new CleanupItem(Owner, TransactionManager, Target); continue; @@ -1723,6 +1723,13 @@ void pkgAcqMetaClearSig::QueueIndexes(bool const verify) /*{{{*/ } else { + // if the source wanted these files they should have given us a release file :/ + if (Target.IsOptional) + { + new CleanupItem(Owner, TransactionManager, Target); + continue; + } + // if we have no file to patch, no point in trying trypdiff &= (GetExistingFilename(GetFinalFileNameFromURI(Target.URI)).empty() == false); } |