]> granicus.if.org Git - mutt/commitdiff
Move some code around.
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 27 Oct 1998 18:28:12 +0000 (18:28 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 27 Oct 1998 18:28:12 +0000 (18:28 +0000)
send.c

diff --git a/send.c b/send.c
index 7f9d06c9efa678970839f8a038d73b09c2b2a4df..b2c1bdcf7ebef44158f6f6ab9a6232721082896f 100644 (file)
--- 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)
 {