X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=send.c;h=9fc382f410f7a8080e082c3bb7e18c190d5b0e01;hb=000b7ffd7d9cc9cfd9395727227bcbadbe8cdb18;hp=9f741ed3cabd9c4b6e53773e0c5058f5b46eabd7;hpb=841a368ddea400022328f35dd8c7a3eb6f543892;p=apps%2Fmadmutt.git diff --git a/send.c b/send.c index 9f741ed..9fc382f 100644 --- a/send.c +++ b/send.c @@ -369,24 +369,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 *) mem_malloc (sizeof (LIST)); - t->data = str_dup (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];