summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:52:23 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:52:23 +0000
commit39536c62e5da72484337cb0238c64a35838b7ff7 (patch)
tree0ab2c42965786e6d2ed44154c333cff103ac742b
parent7f9b781e30dbf73725a30df7e4608d58fe6e2386 (diff)
Removed extra printf
Author: jgg Date: 1999-01-04 00:57:56 GMT Removed extra printf
-rw-r--r--methods/http.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/http.cc b/methods/http.cc
index 0c7445d76..0467dd3eb 100644
--- a/methods/http.cc
+++ b/methods/http.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: http.cc,v 1.20 1999/01/04 00:51:23 jgg Exp $
+// $Id: http.cc,v 1.21 1999/01/04 00:57:56 jgg Exp $
/* ######################################################################
HTTP Aquire Method - This is the HTTP aquire method for APT.
@@ -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);
}