summaryrefslogtreecommitdiff
path: root/methods/cdrom.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-08-23 08:20:18 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-08-23 08:20:18 +0000
commitbdcf3b49360a353381e981d1918fc300c559948a (patch)
tree09f334d69228757c90c56d0d644a169c300ee8a1 /methods/cdrom.cc
parent64995601ae9335dedd180d634940f1426598f7f0 (diff)
parent25182152bc7812fdd56fd40f8b9a04a140079585 (diff)
* cherry-picked patches from apt--fixes and apt--mvo
Patches applied: * michael.vogt@ubuntu.com--2005/apt--fixes--0--patch-14 * added Hashsum support for file and cdrom * michael.vogt@ubuntu.com--2005/apt--fixes--0--patch-18 * Change pkgPolicy::Pin from private to protected * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-47 * improve the timeout handling (again)
Diffstat (limited to 'methods/cdrom.cc')
-rw-r--r--methods/cdrom.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/methods/cdrom.cc b/methods/cdrom.cc
index 7cc036814..41eb8a0ee 100644
--- a/methods/cdrom.cc
+++ b/methods/cdrom.cc
@@ -13,6 +13,7 @@
#include <apt-pkg/error.h>
#include <apt-pkg/configuration.h>
#include <apt-pkg/fileutl.h>
+#include <apt-pkg/hashes.h>
#include <sys/stat.h>
#include <unistd.h>
@@ -180,6 +181,12 @@ bool CDROMMethod::Fetch(FetchItem *Itm)
CurrentID = NewID;
Res.LastModified = Buf.st_mtime;
Res.Size = Buf.st_size;
+
+ Hashes Hash;
+ FileFd Fd(Res.Filename, FileFd::ReadOnly);
+ Hash.AddFD(Fd.Fd(), Fd.Size());
+ Res.TakeHashes(Hash);
+
URIDone(Res);
return true;
}