David Kalnischkies <kalnischkies+debian@gmail.com>
- Development, bug fixes
-Christian Perrier <bubulle@debian.org>
-- Translations hero/coordinator
-
+Julian Andres Klode
+- Development, bug fixes
Past Contributors:
- Change the package index Info methods to allow apt-cache policy to be useful
when using several different archives on the same host.
-Julian Andres Klode
-- Development, bug fixes
+Christian Perrier <bubulle@debian.org>
+- Translations hero/coordinator
Eugene V. Lyubimkin
- Development, bug fixes
char const * const PkgName = P.Name();
pkgCache::DescIterator Desc = V.TranslatedDescription();
std::string LongDesc = "";
- if (!Desc.end()) {
+ if (Desc.end() == false)
+ {
pkgRecords::Parser &parser = records.Lookup(Desc.FileList());
LongDesc = parser.LongDesc();
}