X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=recvcmd.c;h=8f59859921d8505e7815b2c6e3ea11c6038d9d0d;hb=23002a877577341cfd68687e58348e0ca01b1ac5;hp=e6d54f9715b0fa485c2ba5898e9346790de11e6a;hpb=ee1d4d931ca3ebec494694b74a1868a7a2e631e3;p=apps%2Fmadmutt.git diff --git a/recvcmd.c b/recvcmd.c index e6d54f9..8f59859 100644 --- a/recvcmd.c +++ b/recvcmd.c @@ -11,7 +11,13 @@ # include "config.h" #endif +#include + #include "mutt.h" +#include "enter.h" +#include "state.h" +#include "handler.h" +#include "recvattach.h" #include "mutt_curses.h" #include "mutt_menu.h" #include "rfc1524.h" @@ -149,7 +155,7 @@ void mutt_attach_bounce (FILE * fp, HEADER * hdr, if (mutt_addrlist_to_idna (adr, &err) < 0) { mutt_error (_("Bad IDN: '%s'"), err); - FREE (&err); + p_delete(&err); rfc822_free_address (&adr); return; } @@ -169,10 +175,10 @@ void mutt_attach_bounce (FILE * fp, HEADER * hdr, mutt_format_string (prompt, sizeof (prompt) - 4, 0, COLS - extra_space, 0, 0, prompt, sizeof (prompt), 0); - safe_strcat (prompt, sizeof (prompt), "...?"); + str_cat (prompt, sizeof (prompt), "...?"); } else - safe_strcat (prompt, sizeof (prompt), "?"); + str_cat (prompt, sizeof (prompt), "?"); if (query_quadoption (OPT_BOUNCE, prompt) != M_YES) { rfc822_free_address (&adr); @@ -683,8 +689,8 @@ attach_reply_envelope_defaults (ENVELOPE * env, ATTACHPTR ** idx, if ((flags & SENDNEWS)) { /* in case followup set Newsgroups: with Followup-To: if it present */ if (!env->newsgroups && curenv && - safe_strcasecmp (curenv->followup_to, "poster")) - env->newsgroups = safe_strdup (curenv->followup_to); + str_casecmp (curenv->followup_to, "poster")) + env->newsgroups = str_dup (curenv->followup_to); } else #endif