X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=rfc1524.c;h=882f583a71772230b0d65dd4a4d38f4b1224e27d;hp=c0397ad0968d26c5a6c81bc37bc47cdb14203c42;hb=1c16e9623a9fb6a15bb284a6f7322b583ebc06a7;hpb=8e037c67a88cb4680c4391134c578e3b55a80f8a diff --git a/rfc1524.c b/rfc1524.c index c0397ad..882f583 100644 --- a/rfc1524.c +++ b/rfc1524.c @@ -22,15 +22,15 @@ #endif #include +#include +#include +#include +#include #include "mutt.h" -#include "ascii.h" #include "rfc1524.h" #include "attach.h" -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" #include "lib/debug.h" #include @@ -198,14 +198,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; @@ -269,8 +269,8 @@ 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; - mem_realloc (&test_command, len); + 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)) { /* a non-zero exit code means test failed */ @@ -321,7 +321,7 @@ static int rfc1524_mailcap_parse (BODY * a, rfc1524_entry *rfc1524_new_entry (void) { - return (rfc1524_entry *) mem_calloc (1, sizeof (rfc1524_entry)); + return p_new(rfc1524_entry, 1); } void rfc1524_free_entry (rfc1524_entry ** entry) @@ -477,8 +477,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;