X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pgp.c;h=444eefd7a707f3fb3ff97b3b8022d3d5709f8710;hp=ecb6815403f758ab0666551ca206ade392c7b3ac;hb=841934011451205d8295ac955486f06c317fdf15;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/pgp.c b/pgp.c index ecb6815..444eefd 100644 --- 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)