diff options
author | Michael Vogt <egon@bottom> | 2006-12-14 10:58:43 +0100 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-12-14 10:58:43 +0100 |
commit | a7a5b0e45e2e66ab2142da8181bcc9cd0b3ba8a8 (patch) | |
tree | 853f9b39f531bfa3a0ababa2d2c150a32c133699 /apt-pkg/vendorlist.cc | |
parent | 06ce8ac63b1cc476aba2687a4a742cbe59023096 (diff) | |
parent | d2de5a7619a77343e1dd1fc255a84dfcca2807be (diff) |
* merged from apt--mvo
Diffstat (limited to 'apt-pkg/vendorlist.cc')
-rw-r--r-- | apt-pkg/vendorlist.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/vendorlist.cc b/apt-pkg/vendorlist.cc index 72694dd75..8e5d09e8a 100644 --- a/apt-pkg/vendorlist.cc +++ b/apt-pkg/vendorlist.cc @@ -113,7 +113,7 @@ bool pkgVendorList::CreateList(Configuration& Cnf) const Vendor* pkgVendorList::LookupFingerprint(string Fingerprint) { - for (const_iterator I = begin(); I != end(); ++I) + for (const_iterator I = VendorList.begin(); I != VendorList.end(); ++I) { if ((*I)->LookupFingerprint(Fingerprint) != "") return *I; |