X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/dd2fdae926c586c6e19ec7d66cc0cb18932d7036..d2f2872d3b9b9f49277214a640e70d9c9b6bbe31:/methods/gzip.cc?ds=sidebyside 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; }