summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--methods/copy.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/methods/copy.cc b/methods/copy.cc
index a23c0316c..f3cd84215 100644
--- a/methods/copy.cc
+++ b/methods/copy.cc
@@ -65,17 +65,9 @@ bool CopyMethod::Fetch(FetchItem *Itm)
Res.Size = Buf.st_size;
Res.Filename = Itm->DestFile;
Res.LastModified = Buf.st_mtime;
- Res.IMSHit = false;
+ 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)
{