diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-format.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 152dcb04b3..b6c0c43beb 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,9 @@ 2000-06-01 Dan Winship <danw@helixcode.com> + * mail-format.c (mail_generate_forward): Fix forwarding to work + for people other than me. :) [Although apparently it doesn't + really.] + * mail-ops.c (delete_msg): Add a quick hack to move the selection down a row when you delete a message. diff --git a/mail/mail-format.c b/mail/mail-format.c index d4840d63c7..85745c6755 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1426,7 +1426,7 @@ mail_generate_forward (CamelMimeMessage *mime_message, * EMsgComposer will support attaching CamelMimeParts directly, * or something. FIXME. */ - tmpfile = g_strdup ("/tmp/evolution-kludge-XXXX"); + tmpfile = g_strdup ("/tmp/evolution-kludge-XXXXXX"); #ifdef HAVE_MKSTEMP fd = mkstemp (tmpfile); #else |