X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=rfc1524.c;h=35a2a95c629f74cf019c3417f9e6afc11c51b266;hb=0c12d960399d14b4143b2bb91a96bdaca64e4c56;hp=5b70e5a0cd35e93c79f0eefdbb58a984316e6679;hpb=617e7d83d14e14e6a520a48e75437211b16c8834;p=apps%2Fmadmutt.git diff --git a/rfc1524.c b/rfc1524.c index 5b70e5a..35a2a95 100644 --- a/rfc1524.c +++ b/rfc1524.c @@ -22,14 +22,14 @@ #endif #include +#include +#include +#include #include "mutt.h" -#include "ascii.h" #include "rfc1524.h" #include "attach.h" -#include "lib/intl.h" -#include "lib/str.h" #include "lib/debug.h" #include @@ -197,14 +197,14 @@ 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 */ - str_cmp (buf + btlen, "/*")))) /* wildsubtype */ + m_strcmp(buf + btlen, "/*")))) /* wildsubtype */ continue; /* next field is the viewcommand */ field = ch; ch = get_field (ch); if (entry) - entry->command = str_dup (field); + entry->command = m_strdup(field); /* parse the optional fields */ found = TRUE; @@ -268,7 +268,7 @@ static int rfc1524_mailcap_parse (BODY * a, if (get_field_text (field + 4, &test_command, type, filename, line) && test_command) { - len = str_len (test_command) + STRING; + len = m_strlen(test_command) + STRING; p_realloc(&test_command, len); rfc1524_expand_command (a, a->filename, type, test_command, len); if (mutt_system (test_command)) { @@ -476,8 +476,8 @@ int rfc1524_expand_filename (char *nametemplate, rmatch = 1; - for (r = 0, j = str_len (oldfile) - 1, k = - str_len (nametemplate) - 1; + for (r = 0, j = m_strlen(oldfile) - 1, k = + m_strlen(nametemplate) - 1; j >= (lmatch ? i : 0) && k >= i + 2; j--, k--) { if (nametemplate[k] != oldfile[j]) { rmatch = 0;