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

* methods/mirror.cc:
- generate an equal sign also for the first arch (Closes: #669142)

Raphael Geissert лет назад: 14
Родитель
Сommit
046e104e13
2 измененных файлов с 4 добавлено и 1 удалено
  1. 3 0
      debian/changelog
  2. 1 1
      methods/mirror.cc

+ 3 - 0
debian/changelog

@@ -24,6 +24,9 @@ apt (0.9.4) UNRELEASED; urgency=low
       in the method the redirection occured in (Closes: #668111)
   * methods/http.cc:
     - forbid redirects to change protocol
+  * methods/mirror.cc:
+    - generate an equal sign also for the first arch (Closes: #669142)
+
 
  -- David Kalnischkies <kalnischkies@gmail.com>  Fri, 11 May 2012 23:26:59 +0200
 

+ 1 - 1
methods/mirror.cc

@@ -150,7 +150,7 @@ bool MirrorMethod::DownloadMirrorFile(string mirror_uri_str)
    for (std::vector<std::string>::const_iterator I = vec.begin();
         I != vec.end(); ++I)
       if (I == vec.begin())
-         fetch += "?arch" + (*I);
+         fetch += "?arch=" + (*I);
       else
          fetch += "&arch=" + (*I);