summaryrefslogtreecommitdiff
path: root/methods/gzip.cc
diff options
context:
space:
mode:
authorMichael Vogt <egon@bottom>2006-10-02 20:42:47 +0200
committerMichael Vogt <egon@bottom>2006-10-02 20:42:47 +0200
commit591c8c170e82e9d44d7ac405a478ba52250f8bbc (patch)
treeb809ffb3bbc576c58298629444cff913c6c2733c /methods/gzip.cc
parentdd2fdae926c586c6e19ec7d66cc0cb18932d7036 (diff)
parent75c541fdeda664bdf0e48e68a2aa5dae7015587c (diff)
* merged from apt--mvo
Diffstat (limited to 'methods/gzip.cc')
-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;
}