diff options
Diffstat (limited to 'lib/libopenbsd/imsg.c')
-rw-r--r-- | lib/libopenbsd/imsg.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/libopenbsd/imsg.c b/lib/libopenbsd/imsg.c index b049881..be0fdd1 100644 --- a/lib/libopenbsd/imsg.c +++ b/lib/libopenbsd/imsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imsg.c,v 1.11 2015/11/27 01:57:59 mmcc Exp $ */ +/* $OpenBSD: imsg.c,v 1.12 2015/12/05 13:06:52 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -82,11 +82,9 @@ again: } if ((n = recvmsg(ibuf->fd, &msg, 0)) == -1) { - if (errno == EMSGSIZE) - goto fail; - if (errno != EINTR && errno != EAGAIN) - goto fail; - goto again; + if (errno == EINTR) + goto again; + goto fail; } ibuf->r.wpos += n; |