From 518cde8d6ce0434b02bd5d7cf7e9627d57af6952 Mon Sep 17 00:00:00 2001 From: ajs Date: Thu, 17 Feb 2005 20:11:58 +0000 Subject: 2005-02-17 Andrew J. Schorr * watchquagga.c: (handle_read) Use new ERRNO_IO_RETRY macro. --- watchquagga/watchquagga.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'watchquagga/watchquagga.c') diff --git a/watchquagga/watchquagga.c b/watchquagga/watchquagga.c index cde21b99..f49cb927 100644 --- a/watchquagga/watchquagga.c +++ b/watchquagga/watchquagga.c @@ -1,5 +1,5 @@ /* - $Id: watchquagga.c,v 1.10 2005/02/16 20:40:25 ajs Exp $ + $Id: watchquagga.c,v 1.11 2005/02/17 20:11:58 ajs Exp $ Monitor status of quagga daemons and restart if necessary. @@ -609,7 +609,7 @@ handle_read(struct thread *t_read) { char why[100]; - if ((errno == EINTR) || (errno == EAGAIN)) + if (ERRNO_IO_RETRY(errno)) { /* Pretend it never happened. */ SET_READ_HANDLER(dmn); -- cgit v1.2.1