X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fmx_imap.c;h=a851537b0ecef645d23aa7d039128cc2abc2e9cb;hb=3e611c4b53a33408955152e1c9336f8643ea096e;hp=dbec056a4aa676ab1473b4e9f017683cc3b895a0;hpb=8e037c67a88cb4680c4391134c578e3b55a80f8a;p=apps%2Fmadmutt.git diff --git a/imap/mx_imap.c b/imap/mx_imap.c index dbec056..a851537 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -10,6 +10,7 @@ #include #include +#include #include "mutt.h" #include "imap_private.h" @@ -17,8 +18,6 @@ #include "mx.h" #include "mx_imap.h" -#include "lib/mem.h" -#include "lib/str.h" #include "url.h" @@ -44,7 +43,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; } @@ -63,7 +62,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;