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

diff --git a/alias.c b/alias.c
index 5b76a072666d86c7a3fe9a3573073c6ee764805b..4333d0d0a39477821dacc1a5ff4a9fa833c67ce5 100644 (file)
--- a/alias.c
+++ b/alias.c
@@ -598,15 +598,15 @@ int mutt_alias_complete (char *s, size_t buflen)
   return 0;
 }
 
-static int string_is_address(const char *str, const char *u, const char *d)
+static bool string_is_address(const char *str, const char *u, const char *d)
 {
   char buf[LONG_STRING];
 
   snprintf(buf, sizeof(buf), "%s@%s", NONULL(u), NONULL(d));
   if (ascii_strcasecmp(str, buf) == 0)
-    return 1;
+    return true;
 
-  return 0;
+  return false;
 }
 
 /* returns true if the given address belongs to the user. */