diff options
author | Julian Andres Klode <jak@debian.org> | 2016-01-12 11:27:13 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-01-12 11:27:13 +0100 |
commit | fe4a53782211c459e8a50654055ad4f797ad1f3b (patch) | |
tree | ee10f535e5d228edf18318b5a1ff8320bc949762 | |
parent | 831ea74cddf8568b8648edddb394fdd3d1ba7b8e (diff) |
AUTHORS: Update: I am active, bubulle is not
Gbp-Dch: ignore
-rw-r--r-- | AUTHORS | 9 | ||||
-rw-r--r-- | apt-private/private-search.cc | 3 |
2 files changed, 6 insertions, 6 deletions
@@ -6,9 +6,8 @@ Michael Vogt <mvo@debian.org> 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: @@ -16,8 +15,8 @@ Robert Collins <robert.collins@canonical.com> - 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 diff --git a/apt-private/private-search.cc b/apt-private/private-search.cc index 4f2bc4913..bae04173d 100644 --- a/apt-private/private-search.cc +++ b/apt-private/private-search.cc @@ -92,7 +92,8 @@ static bool FullTextSearch(CommandLine &CmdL) /*{{{*/ 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(); } |