]> granicus.if.org Git - mutt/commitdiff
Moves mutt_copy_list to muttlib.c, where it belongs.
authorDavid Champion <dgc@bikeshed.us>
Tue, 30 Aug 2016 23:30:06 +0000 (16:30 -0700)
committerDavid Champion <dgc@bikeshed.us>
Tue, 30 Aug 2016 23:30:06 +0000 (16:30 -0700)
muttlib.c
send.c

index 209c7ab90306e25a09ee8a9b48a9ac9471b59b14..4c504b222d7e9217b45470b1be41c0a42050f70d 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -311,6 +311,26 @@ void mutt_free_list (LIST **list)
   }
 }
 
+LIST *mutt_copy_list (LIST *p)
+{
+  LIST *t, *r=NULL, *l=NULL;
+
+  for (; p; p = p->next)
+  {
+    t = (LIST *) safe_malloc (sizeof (LIST));
+    t->data = safe_strdup (p->data);
+    t->next = NULL;
+    if (l)
+    { 
+      r->next = t;
+      r = r->next;
+    }
+    else
+      l = r = t;
+  }
+  return (l);
+}
+
 HEADER *mutt_dup_header(HEADER *h)
 {
   HEADER *hnew;
diff --git a/send.c b/send.c
index e206bad06004634c3431da081b1da6452a11e84c..8423934d867aef8819ebfc30b8f1a6660c33f729 100644 (file)
--- a/send.c
+++ b/send.c
@@ -324,26 +324,6 @@ static void process_user_header (ENVELOPE *env)
   }
 }
 
-LIST *mutt_copy_list (LIST *p)
-{
-  LIST *t, *r=NULL, *l=NULL;
-
-  for (; p; p = p->next)
-  {
-    t = (LIST *) safe_malloc (sizeof (LIST));
-    t->data = safe_strdup (p->data);
-    t->next = NULL;
-    if (l)
-    {
-      r->next = t;
-      r = r->next;
-    }
-    else
-      l = r = t;
-  }
-  return (l);
-}
-
 void mutt_forward_intro (FILE *fp, HEADER *cur)
 {
   char buffer[STRING];