]> git.saurik.com Git - apt.git/blobdiff - methods/file.cc
Merge remote-tracking branch 'upstream/debian/sid' into feature/apt-download-file
[apt.git] / methods / file.cc
index 5025c996d7008784848d233ac967aede3d4df617..3d0687c5bf03b04f13669d5900ec3405b3776768 100644 (file)
@@ -5,7 +5,7 @@
 
    File URI method for APT
    
-   This simply checks that the file specified exists, if so the relevent
+   This simply checks that the file specified exists, if so the relevant
    information is returned. If a .gz filename is specified then the file
    name with .gz removed will also be checked and information about it
    will be returned in Alt-*
@@ -83,7 +83,7 @@ bool FileMethod::Fetch(FetchItem *Itm)
 
    Hashes Hash;
    FileFd Fd(Res.Filename, FileFd::ReadOnly);
-   Hash.AddFD(Fd.Fd(), Fd.Size());
+   Hash.AddFD(Fd);
    Res.TakeHashes(Hash);
    URIDone(Res);
    return true;