diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-11 12:08:40 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-11 12:08:40 +0200 |
commit | 27299daff7e00d561dabb92945a516ed34b7be47 (patch) | |
tree | 5574555cac150eb980c372b5ad68e4be82ccac21 | |
parent | b7347826732bfad84001555d51f57b99017dd8c4 (diff) |
* apt-pkg/acquire-item.cc:
- make Acquire::PDiffs=true get pdfiffs, =false not get them
-rw-r--r-- | apt-pkg/acquire-item.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index c1f6767c0..f22daaf71 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1029,7 +1029,7 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) // Queue Packages file (either diff or full packages files, depending // on the users option) - if(_config->FindB("Acquire::PDiffs",false) == false) + if(_config->FindB("Acquire::PDiffs",true) == true) new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, (*Target)->ShortDesc, ExpectedIndexMD5); else |