From: Julian Andres Klode Date: Tue, 12 Jan 2016 10:27:13 +0000 (+0100) Subject: AUTHORS: Update: I am active, bubulle is not X-Git-Tag: 1.2~17 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/fe4a53782211c459e8a50654055ad4f797ad1f3b AUTHORS: Update: I am active, bubulle is not Gbp-Dch: ignore --- diff --git a/AUTHORS b/AUTHORS index fc0916331..cce31e651 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,9 +6,8 @@ Michael Vogt David Kalnischkies - Development, bug fixes -Christian Perrier -- Translations hero/coordinator - +Julian Andres Klode +- Development, bug fixes Past Contributors: @@ -16,8 +15,8 @@ Robert Collins - 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 +- 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(); }