tag 294231 patch
thanks.
the patch given in
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=294231#5
is incorrect, imho.
mbox->next was intentionally set to NULL.
the bug was a copy'n'paste error from elsewhere,
the correct patch against libesmtp 1.0.4 is:
--- headers.c.orig 2008-05-07 12:33:23.485256941 +0200
+++ headers.c 2008-05-05 03:32:30.574634072 +0200
@@ -334,7 +334,7 @@
mbox->mailbox = strdup (mailbox);
mbox->next = NULL;
- mbox->next = header->value;
+ header->value = mbox;
return 1;
}
thanks,
Lars
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]