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

fix typo in apt-pkg/acquire.cc which prevents Dl-Limit to work
correctly when downloading from multiple sites (Closes: #534752)

Michael Vogt лет назад: 17
Родитель
Сommit
4b65cc13c7
2 измененных файлов с 3 добавлено и 1 удалено
  1. 1 1
      apt-pkg/acquire.cc
  2. 2 0
      debian/changelog

+ 1 - 1
apt-pkg/acquire.cc

@@ -265,7 +265,7 @@ pkgAcquire::MethodConfig *pkgAcquire::GetConfig(string Access)
       return 0;
 
    /* if a method uses DownloadLimit, we switch to SingleInstance mode */
-   if(_config->FindI("Acquire::"+Access+"::DlLimit",0) > 0)
+   if(_config->FindI("Acquire::"+Access+"::Dl-Limit",0) > 0)
       Conf->SingleInstance = true;
     
    return Conf;

+ 2 - 0
debian/changelog

@@ -31,6 +31,8 @@ apt (0.7.22) UNRELEASED; urgency=low
   * do not write state file in simulate mode (closes: #433007)
   * add hook for auto-install (closes: #470035)
   * support IsAutoInstallOk in the resolver too
+  * fix typo in apt-pkg/acquire.cc which prevents Dl-Limit to work
+    correctly when downloading from multiple sites (Closes: #534752)
 
   [ Michael Vogt ]
   * honor the dpkg hold state in AutoInstOk (closes: #64141)