diff options
author | Michael Vogt <mvo@debian.org> | 2006-01-06 00:02:14 +0000 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2006-01-06 00:02:14 +0000 |
commit | ce424cd4464ce46706046d581e05fbf292a54881 (patch) | |
tree | 9a7947bff875e32633b423c8d5a3448ef451e766 /apt-pkg/acquire-item.h | |
parent | d4ef73fbc21241252917c551f60f686dcd5c2e1f (diff) |
* support multiple signatures
Diffstat (limited to 'apt-pkg/acquire-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index e6fc7fc47..da1bea801 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -151,9 +151,10 @@ class pkgAcqMetaIndex : public pkgAcquire::Item const vector<struct IndexTarget*>* IndexTargets; indexRecords* MetaIndexParser; bool AuthPass; - bool IMSHit; // required to fail gracefully on failures + // required to deal gracefully with problems caused by incorrect ims hits + bool IMSHit; - bool VerifyVendor(); + bool VerifyVendor(string Message); void RetrievalDone(string Message); void AuthDone(string Message); void QueueIndexes(bool verify); |