Make MAlias public. migrate $signature, so that I can test the new MCore.folder_hook...
[apps/madmutt.git] / lib-crypt / pgpmicalg.c
index 4e5e836..0edbfea 100644 (file)
@@ -65,7 +65,7 @@ static void pgp_dearmor (FILE * in, FILE * out)
   /* find the beginning of ASCII armor */
 
   while ((r = fgets (line, sizeof (line), in)) != NULL) {
-    if (!strncmp (line, "-----BEGIN", 10))
+    if (!m_strncmp (line, "-----BEGIN", 10))
       break;
   }
   if (r == NULL) {
@@ -89,7 +89,7 @@ static void pgp_dearmor (FILE * in, FILE * out)
   /* find the checksum */
 
   while ((r = fgets (line, sizeof (line), in)) != NULL) {
-    if (*line == '=' || !strncmp (line, "-----END", 8))
+    if (*line == '=' || !m_strncmp (line, "-----END", 8))
       break;
   }
   if (r == NULL) {
@@ -137,7 +137,7 @@ static short pgp_find_hash (const char *fname)
 
   short rv = -1;
 
-  out = m_tempfile (tempfile, sizeof(tempfile), NONULL(Tempdir), NULL);
+  out = m_tempfile (tempfile, sizeof(tempfile), NONULL(MCore.tmpdir), NULL);
   if (!out) {
     mutt_perror (_("Can't create temporary file"));
     goto bye;