X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;h=ace09c00f759ef3ed68664b930beb3b9c2cd35ba;hp=27db967a3dc09378b46f5769bd64625bf8bfcd17;hb=a0aa4a45870f1607e8b41760866071692675c84d;hpb=16536d59024177409f49134c3f03f69855c144b9 diff --git a/send.c b/send.c index 27db967..ace09c0 100644 --- a/send.c +++ b/send.c @@ -12,10 +12,10 @@ #include #include +#include #include #include -#include "mutt.h" #include "alias.h" #include "keymap.h" #include "copy.h" @@ -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); } }