From: David Kalnischkies Date: Fri, 27 Mar 2015 17:56:44 +0000 (+0100) Subject: remove duplicated check for same file copy X-Git-Tag: 1.1.exp9~140^2~62 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/936d5613e4b6145798c5a1d0c484158115576fa8 remove duplicated check for same file copy Git-Dch: Ignore --- 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) {