summaryrefslogtreecommitdiff
path: root/poll
diff options
context:
space:
mode:
authorniq <niq@13f79535-47bb-0310-9956-ffa450edef68>2008-05-04 15:36:23 +0000
committerniq <niq@13f79535-47bb-0310-9956-ffa450edef68>2008-05-04 15:36:23 +0000
commit51765c4528c11d06912d36822d4fc798a028b0e8 (patch)
treedfc8b78c20d870c3c1b489c9bab9906914204ba9 /poll
parentedfbb83788a0cc586a4d4b4572e16834fd8b4f98 (diff)
downloadlibapr-51765c4528c11d06912d36822d4fc798a028b0e8.tar.gz
Fix typo in r649830
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@653232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll')
-rw-r--r--poll/unix/port.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/poll/unix/port.c b/poll/unix/port.c
index f698e70fc..2feb2cccc 100644
--- a/poll/unix/port.c
+++ b/poll/unix/port.c
@@ -370,8 +370,8 @@ APR_DECLARE(apr_status_t) apr_pollset_poll(apr_pollset_t *pollset,
for (i = 0, j = 0; i < nget; i++) {
fp = (((pfd_elem_t*)(pollset->port_set[i].portev_user))->pfd);
if ((pollset->flags & APR_POLLSET_WAKEABLE) &&
- fd.desc_type == APR_POLL_FILE &&
- fd.desc.f == pollset->wakeup_pipe[0]) {
+ fp.desc_type == APR_POLL_FILE &&
+ fp.desc.f == pollset->wakeup_pipe[0]) {
drain_wakeup_pipe(pollset);
rv = APR_EINTR;
}