X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fpoll.c;h=4c766058cdfb8b1681797aca8debf2b3134fd1f2;hb=7812eaf5e45de650b8629df5a231dbcab1182b55;hp=a2f2c901610e61117a936457ae20446a5f022479;hpb=3576736bac485d8f04b2fc4f6b5cfcef7576d741;p=yaz-moved-to-github.git diff --git a/src/poll.c b/src/poll.c index a2f2c90..4c76605 100644 --- a/src/poll.c +++ b/src/poll.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: poll.c,v 1.4 2007-11-30 11:44:47 adam Exp $ + * $Id: poll.c,v 1.5 2008-01-21 13:09:07 adam Exp $ */ /** * \file @@ -140,8 +140,10 @@ int yaz_poll_poll(struct yaz_poll_fd *fds, int num_fds, int sec, int nsec) yaz_poll_add(mask, yaz_poll_read); if (pollfds[i].revents & POLLOUT) yaz_poll_add(mask, yaz_poll_write); - if (pollfds[i].revents & POLLERR) + if (pollfds[i].revents & ~(POLLIN | POLLOUT)) + { yaz_poll_add(mask, yaz_poll_except); + } } fds[i].output_mask = mask; }