X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;h=ace09c00f759ef3ed68664b930beb3b9c2cd35ba;hp=4039463ba3cbdd3c9f62a2ab4f6bd8cbc9aa2b0f;hb=284454918cc95058b026d057195eaa5279135c36;hpb=230399f9632c37b66c1c117a17e8327eae6b3235 diff --git a/send.c b/send.c index 4039463..ace09c0 100644 --- a/send.c +++ b/send.c @@ -7,31 +7,15 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - #include +#include #include #include - +#include #include #include -#include "mutt.h" #include "alias.h" #include "keymap.h" #include "copy.h" @@ -297,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)); } @@ -593,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) { @@ -920,7 +904,7 @@ void mutt_set_followup_to (ENVELOPE * e) } } - address_list_uniq(&e->mail_followup_to); + address_list_uniq(e->mail_followup_to); } }