[Top][All Lists]
[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-275-ge2dff98 |
Date: |
Thu, 18 Jun 2009 10:22:41 +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=e2dff986e890f397154ddfd51c7b94453fadba69
The branch, master has been updated
via e2dff986e890f397154ddfd51c7b94453fadba69 (commit)
from 44859c2a7a6cfb8e8ee2a9773a671535e3d69738 (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 e2dff986e890f397154ddfd51c7b94453fadba69
Author: Sergey Poznyakoff <address@hidden>
Date: Thu Jun 18 13:21:29 2009 +0300
Bugfix
* mailbox/mutil.c (mu_fd_wait): Handle exceptions.
-----------------------------------------------------------------------
Summary of changes:
mailbox/mutil.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mailbox/mutil.c b/mailbox/mutil.c
index 34a85b4..69729da 100644
--- a/mailbox/mutil.c
+++ b/mailbox/mutil.c
@@ -1303,10 +1303,10 @@ mu_fd_wait (int fd, int *pflags, struct timeval *tvp)
if (tvp)
{
struct timeval tv = *tvp;
- rc = select (fd + 1, &rdset, &wrset, NULL, &tv);
+ rc = select (fd + 1, &rdset, &wrset, &exset, &tv);
}
else
- rc = select (fd + 1, &rdset, &wrset, NULL, NULL);
+ rc = select (fd + 1, &rdset, &wrset, &exset, NULL);
}
while (rc == -1 && errno == EINTR);
hooks/post-receive
--
GNU Mailutils
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Mailutils branch, master, updated. mu-1-2-90-separate-argp-cfg-275-ge2dff98,
Sergey Poznyakoff <=