diff options
Diffstat (limited to 'methods/copy.cc')
-rw-r--r-- | methods/copy.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/methods/copy.cc b/methods/copy.cc index 3883c822b..faf330ace 100644 --- a/methods/copy.cc +++ b/methods/copy.cc @@ -70,6 +70,14 @@ bool CopyMethod::Fetch(FetchItem *Itm) Res.LastModified = Buf.st_mtime; Res.IMSHit = false; URIStart(Res); + + // when the files are identical, just compute the hashes + if(File == Itm->DestFile) + { + CalculateHashes(Res); + URIDone(Res); + return true; + } // just calc the hashes if the source and destination are identical if (File == Itm->DestFile) |