Nico Golde:
[apps/madmutt.git] / pgp.c
diff --git a/pgp.c b/pgp.c
index ecb6815..444eefd 100644 (file)
--- a/pgp.c
+++ b/pgp.c
@@ -1006,7 +1006,7 @@ static short is_numerical_keyid (const char *s)
   /* or should we require the "0x"? */
   if (strncmp (s, "0x", 2) == 0)
     s += 2;
-  if (strlen (s) % 8)
+  if (mutt_strlen (s) % 8)
     return 0;
   while (*s)
     if (strchr ("0123456789ABCDEFabcdef", *s++) == NULL)