summaryrefslogtreecommitdiff
path: root/poll
diff options
context:
space:
mode:
authorniq <niq@13f79535-47bb-0310-9956-ffa450edef68>2008-05-07 08:58:47 +0000
committerniq <niq@13f79535-47bb-0310-9956-ffa450edef68>2008-05-07 08:58:47 +0000
commitbc1a12d238a0c565fa8f0f48ed42a2bcd086371f (patch)
tree7c0335234aec9dddfc74d08f5085cb5f90b69e41 /poll
parentb95fa38d041e0b86a7211773c3a51320a5dd1ca8 (diff)
downloadlibapr-bc1a12d238a0c565fa8f0f48ed42a2bcd086371f.tar.gz
Fix incomplete patch in r653953
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@654046 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll')
-rw-r--r--poll/unix/port.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/poll/unix/port.c b/poll/unix/port.c
index a54d66ccd..ca4d7b28e 100644
--- a/poll/unix/port.c
+++ b/poll/unix/port.c
@@ -310,6 +310,9 @@ APR_DECLARE(apr_status_t) apr_pollset_remove(apr_pollset_t *pollset,
APR_RING_REMOVE(ep, link);
APR_RING_INSERT_TAIL(&(pollset->dead_ring),
ep, pfd_elem_t, link);
+ if (ENOENT == err) {
+ rv = APR_SUCCESS;
+ }
break;
}
}