diff options
Diffstat (limited to 'methods')
-rw-r--r-- | methods/gzip.cc | 4 | ||||
-rw-r--r-- | methods/http.cc | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/methods/gzip.cc b/methods/gzip.cc index be4f82e6f..a78fcb3ee 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: gzip.cc,v 1.4 1998/11/01 05:27:43 jgg Exp $ +// $Id: gzip.cc,v 1.5 1998/11/05 07:21:47 jgg Exp $ /* ###################################################################### GZip method - Take a file URI in and decompress it into the target @@ -36,7 +36,7 @@ class GzipMethod : public pkgAcqMethod bool GzipMethod::Fetch(FetchItem *Itm) { URI Get = Itm->Uri; - + // Open the source and destintation files FileFd From(Get.Path,FileFd::ReadOnly); FileFd To(Itm->DestFile,FileFd::WriteEmpty); diff --git a/methods/http.cc b/methods/http.cc index 4c773b064..b97d1dbc9 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: http.cc,v 1.3 1998/11/04 07:10:49 jgg Exp $ +// $Id: http.cc,v 1.4 1998/11/05 07:21:48 jgg Exp $ /* ###################################################################### HTTP Aquire Method - This is the HTTP aquire method for APT. @@ -951,6 +951,7 @@ int HttpMethod::Loop() // Decide what to do. FetchResult Res; + Res.Filename = Queue->DestFile; switch (DealWithHeaders(Res,Server)) { // Ok, the file is Open |