summaryrefslogtreecommitdiff
path: root/pflocal
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-08-29 23:17:33 +0000
committerMiles Bader <miles@gnu.org>1995-08-29 23:17:33 +0000
commit77a71d65e9cbffbb1bb613d626f5e01645f36bf4 (patch)
tree924fa0372b3e4ac89dd893998424d224fcf62442 /pflocal
parent8c642599bdadadcb80c8cc1d50e9e415ec165c3c (diff)
(S_io_select): Use pipe_select instead of pipe_wait.
Diffstat (limited to 'pflocal')
-rw-r--r--pflocal/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pflocal/io.c b/pflocal/io.c
index 9fa933ff..fa31e022 100644
--- a/pflocal/io.c
+++ b/pflocal/io.c
@@ -241,7 +241,7 @@ S_io_select (struct sock_user *user, int *select_type, int *id_tag)
else
/* The user only cares about reading, so wait until something is
readable. */
- err = pipe_wait (pipe, 0, 1);
+ err = pipe_select (pipe, 1);
pipe_release_reader (pipe);
}