X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=imap%2Fmx_imap.c;h=d622a47d05df50fafefb439d75a38f8c25cfcd2c;hb=40fc05e11b8f95a9661e6e410a9e7b7da7824891;hp=6ad4b324590ba594615532c5e8133859c23d7897;hpb=ba5e3af4ea19e1d20c80941c077039871ec84258;p=apps%2Fmadmutt.git diff --git a/imap/mx_imap.c b/imap/mx_imap.c index 6ad4b32..d622a47 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -9,16 +9,18 @@ #include +#include +#include +#include +#include + #include "mutt.h" #include "imap_private.h" #include "mx.h" #include "mx_imap.h" -#include "lib/mem.h" -#include "lib/str.h" -#include "url.h" int imap_is_magic (const char* path, struct stat* st) { url_scheme_t s; @@ -42,7 +44,7 @@ static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr) mutt_perror (tmp); return (-1); } - msg->path = str_dup (tmp); + msg->path = m_strdup(tmp); return 0; } @@ -61,7 +63,7 @@ static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) { } mx_t* imap_reg_mx (void) { - mx_t* fmt = mem_calloc (1, sizeof (mx_t)); + mx_t* fmt = p_new(mx_t, 1); /* make up mx_t record... */ fmt->type = M_IMAP;