[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU Mailutils branch, master, updated. release-2.2-657-g2705167
From: |
Sergey Poznyakoff |
Subject: |
[SCM] GNU Mailutils branch, master, updated. release-2.2-657-g2705167 |
Date: |
Wed, 19 Jun 2013 04:46:44 +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=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 <address@hidden>
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Mailutils branch, master, updated. release-2.2-657-g2705167,
Sergey Poznyakoff <=