]> git.saurik.com Git - apt.git/commitdiff
* methods/http.cc: change user agent from debian to ubuntu
authorMichael Vogt <michael.vogt@ubuntu.com>
Fri, 26 May 2006 16:17:09 +0000 (18:17 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Fri, 26 May 2006 16:17:09 +0000 (18:17 +0200)
configure.in
debian/changelog
methods/http.cc

index 2e92bd0a91414b9c5b8de789e54aa5e474c05e0f..bb15eeb854b200ebc83405be4ec071bd60660985 100644 (file)
@@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib)
 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
 
 dnl -- SET THIS TO THE RELEASE VERSION --
 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
 
 dnl -- SET THIS TO THE RELEASE VERSION --
-AC_DEFINE_UNQUOTED(VERSION,"0.6.43.3ubuntu1")
+AC_DEFINE_UNQUOTED(VERSION,"0.6.43.3ubuntu3")
 PACKAGE="apt"
 AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
 AC_SUBST(PACKAGE)
 PACKAGE="apt"
 AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
 AC_SUBST(PACKAGE)
index e8962595f3bdf1e7ce4f46f58e845b1dde2f5fcb..08ba10a635c3961d17b318eda3620e1f77ecf5a3 100644 (file)
@@ -1,3 +1,10 @@
+apt (0.6.43.3ubuntu3) dapper; urgency=low
+
+  * methods/http.cc:
+    - fix the user-agent string
+
+ -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 26 May 2006 18:09:32 +0200
+
 apt (0.6.43.3ubuntu2) dapper; urgency=low
 
   * apt-pkg/deb/dpkgpm.cc: wording fixes (thanks to Matt Zimmerman)
 apt (0.6.43.3ubuntu2) dapper; urgency=low
 
   * apt-pkg/deb/dpkgpm.cc: wording fixes (thanks to Matt Zimmerman)
index 341de94e37ab046c3e2a1360bdd16f0f96a5c7dc..09dab81881469c48280f45833c3ecdbfe810ceca 100644 (file)
@@ -714,7 +714,7 @@ void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out)
       Req += string("Authorization: Basic ") + 
           Base64Encode(Uri.User + ":" + Uri.Password) + "\r\n";
    
       Req += string("Authorization: Basic ") + 
           Base64Encode(Uri.User + ":" + Uri.Password) + "\r\n";
    
-   Req += "User-Agent: Debian APT-HTTP/1.3\r\n\r\n";
+   Req += "User-Agent: Ubuntu APT-HTTP/1.3\r\n\r\n";
    
    if (Debug == true)
       cerr << Req << endl;
    
    if (Debug == true)
       cerr << Req << endl;