diff options
author | ajs <ajs> | 2005-02-17 20:11:58 +0000 |
---|---|---|
committer | ajs <ajs> | 2005-02-17 20:11:58 +0000 |
commit | 518cde8d6ce0434b02bd5d7cf7e9627d57af6952 (patch) | |
tree | 2f4b607061eb01459523613c2f234d0361b760e6 /watchquagga/watchquagga.c | |
parent | 53270116df3f54b1f9411f0832567e9effa87593 (diff) |
2005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* watchquagga.c: (handle_read) Use new ERRNO_IO_RETRY macro.
Diffstat (limited to 'watchquagga/watchquagga.c')
-rw-r--r-- | watchquagga/watchquagga.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |