Просмотр исходного кода

* apt-pkg/acquire-item.cc:
- make Acquire::PDiffs=true get pdfiffs, =false not get them

Michael Vogt лет назад: 20
Родитель
Сommit
27299daff7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      apt-pkg/acquire-item.cc

+ 1 - 1
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