summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-30 16:30:42 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-30 16:30:42 +0200
commit60a9e375317c42f6682704e2769b7b2776c7ec12 (patch)
tree77b68405e25cbcfdd05e2bd30f9cca8be1762a3f /methods
parent47e6f3ac05262f452eddbb59657cfc2465b5c62e (diff)
* methods/gzip.cc:
- fix invalid reanem
Diffstat (limited to 'methods')
-rw-r--r--methods/gzip.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/gzip.cc b/methods/gzip.cc
index a8e816bf3..f732c0b86 100644
--- a/methods/gzip.cc
+++ b/methods/gzip.cc
@@ -55,7 +55,7 @@ bool GzipMethod::Fetch(FetchItem *Itm)
// if the file is empty, just rename it and return
if(From.Size() == 0)
{
- Rename(Path, Itm->DestFile);
+ rename(Path.c_str(), Itm->DestFile.c_str());
return true;
}