Просмотр исходного кода

* methods/gzip.cc:
- fix invalid reanem

Michael Vogt лет назад: 20
Родитель
Сommit
60a9e37531
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      methods/gzip.cc

+ 1 - 1
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;
    }