X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;h=736e0c035dbc928ed6672a1bcc1788afce68f33c;hp=27db967a3dc09378b46f5769bd64625bf8bfcd17;hb=df2996444aa4027e4171de7fd2ecd92a2de73676;hpb=1ee89902de184a640c171ae3285bff6882a791bd diff --git a/send.c b/send.c index 27db967..736e0c0 100644 --- a/send.c +++ b/send.c @@ -12,20 +12,20 @@ #include #include +#include #include #include +#include -#include "mutt.h" #include "alias.h" #include "keymap.h" #include "copy.h" -#include "mx.h" #include #include "mutt_idna.h" #include "attach.h" #ifdef USE_NNTP -#include "nntp.h" +#include #endif #ifdef MIXMASTER @@ -281,7 +281,7 @@ static int edit_envelope (ENVELOPE * en, int flags) } #ifdef USE_NNTP -char *nntp_get_header(const char *s) +static char *nntp_get_header(const char *s) { return m_strdup(skipspaces(s)); } @@ -577,8 +577,8 @@ void mutt_fix_reply_recipients (ENVELOPE * env) } /* the CC field can get cluttered, especially with lists */ - address_list_uniq(&env->to); - address_list_uniq(&env->cc); + address_list_uniq(env->to); + address_list_uniq(env->cc); env->cc = mutt_remove_xrefs (env->to, env->cc); if (env->cc && !env->to) { @@ -904,7 +904,7 @@ void mutt_set_followup_to (ENVELOPE * e) } } - address_list_uniq(&e->mail_followup_to); + address_list_uniq(e->mail_followup_to); } }