X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=pop%2Fmx_pop.c;h=f30dbbd088a7dd620b0f9b7e4cfaccd5b21aa402;hb=ac813896ca32d850febc2d95065ac4fa040f11f9;hp=3262dca37090a90b6526e1dc37da312c758c49e9;hpb=ba5e3af4ea19e1d20c80941c077039871ec84258;p=apps%2Fmadmutt.git diff --git a/pop/mx_pop.c b/pop/mx_pop.c index 3262dca..f30dbbd 100644 --- a/pop/mx_pop.c +++ b/pop/mx_pop.c @@ -9,17 +9,16 @@ #include +#include +#include +#include + #include "mutt.h" #include "pop.h" #include "mx.h" #include "mx_pop.h" -#include "lib/mem.h" -#include "lib/str.h" - -#include "url.h" - static int pop_is_magic (const char* path, struct stat* st) { url_scheme_t s = url_check_scheme (NONULL (path)); return ((s == U_POP || s == U_POPS) ? M_POP : -1); @@ -39,7 +38,7 @@ static int acl_check_pop (CONTEXT* ctx, int bit) { } mx_t* pop_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_POP;