Browse Source

AUTHORS: Update: I am active, bubulle is not

Gbp-Dch: ignore
Julian Andres Klode 8 years ago
parent
commit
fe4a537822
2 changed files with 6 additions and 6 deletions
  1. 4 5
      AUTHORS
  2. 2 1
      apt-private/private-search.cc

+ 4 - 5
AUTHORS

@@ -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

+ 2 - 1
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();
       }