]> git.saurik.com Git - apt.git/commitdiff
* methods/mirror.cc:
authorRaphael Geissert <geissert@debian.org>
Mon, 14 May 2012 16:27:37 +0000 (18:27 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Mon, 14 May 2012 16:27:37 +0000 (18:27 +0200)
  - generate an equal sign also for the first arch (Closes: #669142)

debian/changelog
methods/mirror.cc

index 937bde918e5bf26325a7d215c21e22f3cbb10877..88057d531b34888bb4c085da443d8ac7c62dd18f 100644 (file)
@@ -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
 
index eb6d974256eea0ecb93c745c5d0c097165786f4b..d6c5ba955fe3becdd2f555a55e50a5ae7233d776 100644 (file)
@@ -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);