aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-08-04 05:05:07 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-08-04 05:05:07 +0000
commiteea216525149d46d07a03e489f1ade1b4d67cc97 (patch)
tree4b53b6a1a20fc001b49e31f6812d7e84ee93b721 /plugin
parentb5f0591bf6957efeceb4aa9e1ffa49974ebbd7a9 (diff)
attachment_tool.c: don't keep backup.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2657 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'plugin')
-rw-r--r--plugin/attachment_tool/attachment_tool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/attachment_tool/attachment_tool.c b/plugin/attachment_tool/attachment_tool.c
index 9db808c2..def873a3 100644
--- a/plugin/attachment_tool/attachment_tool.c
+++ b/plugin/attachment_tool/attachment_tool.c
@@ -210,7 +210,7 @@ static gboolean remove_attachment(MsgInfo *msginfo)
if (!err) {
debug_print("overwriting original message file: %s\n", infile);
- if (copy_file(outfile, infile, TRUE) == 0) {
+ if (copy_file(outfile, infile, FALSE) == 0) {
struct stat s;
if (g_stat(infile, &s) == 0) {
msginfo->size = s.st_size;