diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-02 09:08:25 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-02 09:08:25 +0800 |
commit | 5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8 (patch) | |
tree | f6e5187ce5275963464d83092e86d3d31da865a1 /mail | |
parent | f5916a12a69fddd8d68c777850d2f4b217d41ae6 (diff) | |
download | gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.tar gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.tar.gz gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.tar.bz2 gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.tar.lz gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.tar.xz gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.tar.zst gsoc2013-evolution-5ab6198e11a0ca19e7fcb99ee483b95eb46a8ee8.zip |
Fix forwarding to work for people other than me. :) [Although apparently
* mail-format.c (mail_generate_forward): Fix forwarding to work
for people other than me. :) [Although apparently it doesn't
really.]
svn path=/trunk/; revision=3357
Diffstat (limited to 'mail')
-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 |