]> granicus.if.org Git - neomutt/commitdiff
pgpring_string_matches_hint
authorRichard Russon <rich@flatcap.org>
Tue, 11 Apr 2017 12:12:14 +0000 (13:12 +0100)
committerRichard Russon <rich@flatcap.org>
Tue, 11 Apr 2017 23:29:59 +0000 (00:29 +0100)
pgppubring.c

index ad04bb8bfd3e1ff400aed446e2e14ecb3a0181e8..7dbae84ce79c2118901beed1786aa125c08ba09e 100644 (file)
@@ -187,20 +187,20 @@ static void pgpring_dump_keyblock (pgp_key_t p)
   }
 }
 
-static int pgpring_string_matches_hint (const char *s, const char *hints[], int nhints)
+static bool pgpring_string_matches_hint (const char *s, const char *hints[], int nhints)
 {
   int i;
 
   if (!hints || !nhints)
-    return 1;
+    return true;
 
   for (i = 0; i < nhints; i++)
   {
     if (mutt_stristr (s, hints[i]) != NULL)
-      return 1;
+      return true;
   }
 
-  return 0;
+  return false;
 }
 
 /* The actual key ring parser */