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=27051677165ddc320ad3283f4b4563e51a3ece74 The branch, master has been updated via 27051677165ddc320ad3283f4b4563e51a3ece74 (commit) from b0769798ab5dc2daaca5559289eac6714554568b (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 27051677165ddc320ad3283f4b4563e51a3ece74 Author: Sergey Poznyakoff <g...@gnu.org.ua> Date: Wed Jun 19 07:45:42 2013 +0300 One more fix. * libmailutils/server/ipsrv.c (mu_ip_tcp_accept): Handle connection aborted error as well. ----------------------------------------------------------------------- Summary of changes: libmailutils/server/ipsrv.c | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/libmailutils/server/ipsrv.c b/libmailutils/server/ipsrv.c index 9ba9c0f..fdd06d1 100644 --- a/libmailutils/server/ipsrv.c +++ b/libmailutils/server/ipsrv.c @@ -363,12 +363,13 @@ mu_ip_tcp_accept (mu_ip_server_t srv, void *call_data) int ec = errno; switch (ec) { - case EINTR: - if (srv->f_intr && srv->f_intr (srv->data, call_data)) - break; - /* fall through */ - case EAGAIN: - ec = 0; + case EINTR: + if (srv->f_intr && srv->f_intr (srv->data, call_data)) + break; + /* fall through */ + case EAGAIN: + case ECONNABORTED: + ec = 0; } return ec; } hooks/post-receive -- GNU Mailutils _______________________________________________ Commit-mailutils mailing list Commit-mailutils@gnu.org https://lists.gnu.org/mailman/listinfo/commit-mailutils