commit-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Mailutils branch, master, updated. release-2.2-718-g7227fdf


From: Sergey Poznyakoff
Subject: [SCM] GNU Mailutils branch, master, updated. release-2.2-718-g7227fdf
Date: Sun, 28 Jun 2015 21:36:46 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Mailutils".

http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=7227fdff1b9f1337c3865d3bbb4d9e9069a667fd

The branch, master has been updated
       via  7227fdff1b9f1337c3865d3bbb4d9e9069a667fd (commit)
      from  4c698e8d63d1348803c076f992b9fe82f978cb34 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7227fdff1b9f1337c3865d3bbb4d9e9069a667fd
Author: Sergey Poznyakoff <address@hidden>
Date:   Mon Jun 29 00:27:48 2015 +0300

    Bugfix
    
    * libproto/maildir/mbox.c (maildir_msg_finish_delivery):
    Don't complain if trying to unlink a nonexistent file.

-----------------------------------------------------------------------

Summary of changes:
 libproto/maildir/mbox.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libproto/maildir/mbox.c b/libproto/maildir/mbox.c
index 5389ddf..0b75ffa 100644
--- a/libproto/maildir/mbox.c
+++ b/libproto/maildir/mbox.c
@@ -540,7 +540,7 @@ maildir_msg_finish_delivery (struct _amd_data *amd, struct 
_amd_message *amm,
 
   if (rc == 0)
     {
-      if (unlink (newname))
+      if (unlink (newname) && errno != ENOENT)
        {
          rc = errno;
          mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,


hooks/post-receive
-- 
GNU Mailutils



reply via email to

[Prev in Thread] Current Thread [Next in Thread]