diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:22 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:22 +0000 |
commit | a4edf53b885ce8559115eaf2c4836ec1f76b07ec (patch) | |
tree | e7b8969b82c8a6ab4c3dffc708c2236101180e80 /methods/http.cc | |
parent | 21ae3cae55e3537db56ae7a77748cacb37b99db6 (diff) |
Fixed quoting bug
Author: jgg
Date: 1998-12-31 05:45:26 GMT
Fixed quoting bug
Diffstat (limited to 'methods/http.cc')
-rw-r--r-- | methods/http.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/methods/http.cc b/methods/http.cc index dc0c6d891..4889919dd 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: http.cc,v 1.18 1998/12/30 02:28:29 jgg Exp $ +// $Id: http.cc,v 1.19 1998/12/31 05:45:26 jgg Exp $ /* ###################################################################### HTTP Aquire Method - This is the HTTP aquire method for APT. @@ -616,7 +616,7 @@ void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out) and we expect the proxy to do this */ if (Proxy.empty() == true) sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n", - Uri.Path.c_str(),ProperHost.c_str()); + QuoteString(Uri.Path,"~").c_str(),ProperHost.c_str()); else { /* Generate a cache control header if necessary. We place a max @@ -664,7 +664,7 @@ void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out) Base64Encode(Proxy.User + ":" + Proxy.Password) + "\r\n"; Req += "User-Agent: Debian APT-HTTP/1.2\r\n\r\n"; -// cerr << Req << endl; + cerr << Req << endl; Out.Read(Req); } |