commit-mailutils
[Top][All Lists]
Advanced

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

[SCM] GNU Mailutils branch, master, updated. mu-1-2-90-separate-argp-cfg


From: Sergey Poznyakoff
Subject: [SCM] GNU Mailutils branch, master, updated. mu-1-2-90-separate-argp-cfg-315-ge4128c9
Date: Tue, 11 Aug 2009 19:54:55 +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=e4128c9e5ebdafaea274caadb87a52a7a405243d

The branch, master has been updated
       via  e4128c9e5ebdafaea274caadb87a52a7a405243d (commit)
      from  968b981b080a2c84445de6bd0df67b265c5fdf28 (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 e4128c9e5ebdafaea274caadb87a52a7a405243d
Author: Sergey Poznyakoff <address@hidden>
Date:   Tue Aug 11 22:54:35 2009 +0300

    Minor fix.
    
    * mailbox/mu_auth.c (mu_auth_runlist): Do not overwrite last
    meaningful error code by ENOSYS.

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

Summary of changes:
 mailbox/mu_auth.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/mailbox/mu_auth.c b/mailbox/mu_auth.c
index 1945a67..2dc237c 100644
--- a/mailbox/mu_auth.c
+++ b/mailbox/mu_auth.c
@@ -218,7 +218,9 @@ mu_auth_runlist (mu_list_t flist, struct mu_auth_data 
**return_data,
               status = rc;
               break;
             }
-          else if (status != EAGAIN)
+          else if (rc == ENOSYS && status != 0)
+           /* nothing: do not overwrite last meaningful return code */;
+         else if (status != EAGAIN)
             status = rc;
         }
 


hooks/post-receive
-- 
GNU Mailutils




reply via email to

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