2 Feb 2008 21:32
typo in send.c
Mailx seems to have a typo in send.c. It passes SEND_MBOX as a parameter to mime_write where a "convert" value is expected. I think it should be passing CONV_NONE instead. Both SEND_MBOX and CONV_NONE have the same numeric value, though, so it doesn't have any impact on the object code. --- mailx-12.3.orig/send.c 2007-06-16 09:28:47.000000000 -0600 +++ mailx-12.3/send.c 2007-08-18 21:56:10.000000000 -0600 <at> <at> -968,7 +968,7 <at> <at> } } sz += mime_write(buf, len, fp, - action == SEND_MBOX ? SEND_MBOX : convert, + action == SEND_MBOX ? CONV_NONE : convert, action == SEND_TODISP || action == SEND_TODISP_ALL || action == SEND_QUOTE || action == SEND_QUOTE_ALL ? ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
RSS Feed