move mutt_get_parameter -> parameter_getval into mime.c
[apps/madmutt.git] / pgppubring.c
index da1e4cd..7b297ed 100644 (file)
@@ -46,8 +46,8 @@ extern int optind;
 short Umask;   /* dirty hack because we need Umask in lib.c but don't want globals.h there */
 
 #include "lib.h"
-#include "pgplib.h"
-#include "pgppacket.h"
+#include <lib-crypt/pgplib.h>
+#include <lib-crypt/pgppacket.h>
 
 #define MD5_DIGEST_LENGTH  16
 
@@ -706,7 +706,7 @@ static int pgpring_string_matches_hint (const char *s, const char *hints[],
     return 1;
 
   for (i = 0; i < nhints; i++) {
-    if (str_isstr (s, hints[i]) != NULL)
+    if (m_stristr(s, hints[i]) != NULL)
       return 1;
   }