summaryrefslogtreecommitdiffstats
path: root/send.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-27 18:28:12 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-27 18:28:12 +0000
commit92cdb05854f73b9ea7672a7ab69763b9f3b43b7f (patch)
treed7e26d9a0bca77ed1d2cc82cf6123eb96f8bcb66 /send.c
parent6a19160e6248bfbcdaa940ebda069e76564fb25c (diff)
Move some code around.
Diffstat (limited to 'send.c')
-rw-r--r--send.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/send.c b/send.c
index 7f9d06c9..b2c1bdcf 100644
--- a/send.c
+++ b/send.c
@@ -439,23 +439,6 @@ static int default_to (ADDRESS **to, ENVELOPE *env, int group)
return (0);
}
-static LIST *make_references(ENVELOPE *e)
-{
- LIST *t, *l;
-
- l = mutt_copy_list(e->references);
-
- if(e->message_id)
- {
- t = mutt_new_list();
- t->data = safe_strdup(e->message_id);
- t->next = l;
- l = t;
- }
-
- return l;
-}
-
static int fetch_recips (ENVELOPE *out, ENVELOPE *in, int flags)
{
ADDRESS *tmp;
@@ -481,6 +464,23 @@ static int fetch_recips (ENVELOPE *out, ENVELOPE *in, int flags)
return 0;
}
+static LIST *make_references(ENVELOPE *e)
+{
+ LIST *t, *l;
+
+ l = mutt_copy_list(e->references);
+
+ if(e->message_id)
+ {
+ t = mutt_new_list();
+ t->data = safe_strdup(e->message_id);
+ t->next = l;
+ l = t;
+ }
+
+ return l;
+}
+
static int
envelope_defaults (ENVELOPE *env, CONTEXT *ctx, HEADER *cur, int flags)
{