Nico Golde:
[apps/madmutt.git] / rfc1524.c
index 4247b05..220beeb 100644 (file)
--- a/rfc1524.c
+++ b/rfc1524.c
@@ -194,7 +194,7 @@ static int rfc1524_mailcap_parse (BODY * a,
       /* check type */
       ch = get_field (buf);
       if (ascii_strcasecmp (buf, type) && (ascii_strncasecmp (buf, type, btlen) || (buf[btlen] != 0 &&  /* implicit wild */
-                                                                                    safe_strcmp (buf + btlen, "/*"))))  /* wildsubtype */
+                                                                                    mutt_strcmp (buf + btlen, "/*"))))  /* wildsubtype */
         continue;
 
       /* next field is the viewcommand */
@@ -265,7 +265,7 @@ static int rfc1524_mailcap_parse (BODY * a,
 
           if (get_field_text (field + 4, &test_command, type, filename, line)
               && test_command) {
-            len = safe_strlen (test_command) + STRING;
+            len = mutt_strlen (test_command) + STRING;
             safe_realloc (&test_command, len);
             rfc1524_expand_command (a, a->filename, type, test_command, len);
             if (mutt_system (test_command)) {
@@ -473,8 +473,8 @@ int rfc1524_expand_filename (char *nametemplate,
 
       rmatch = 1;
 
-      for (r = 0, j = safe_strlen (oldfile) - 1, k =
-           safe_strlen (nametemplate) - 1;
+      for (r = 0, j = mutt_strlen (oldfile) - 1, k =
+           mutt_strlen (nametemplate) - 1;
            j >= (lmatch ? i : 0) && k >= i + 2; j--, k--) {
         if (nametemplate[k] != oldfile[j]) {
           rmatch = 0;