From: Michael Vogt Date: Sat, 30 Sep 2006 14:30:42 +0000 (+0200) Subject: * methods/gzip.cc: X-Git-Tag: 0.7.21~284^2~19^3 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/60a9e375317c42f6682704e2769b7b2776c7ec12?hp=-c * methods/gzip.cc: - fix invalid reanem --- 60a9e375317c42f6682704e2769b7b2776c7ec12 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; }