diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1997-10-06 08:30:08 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1997-10-06 08:30:08 +0000 |
| commit | 115526d03ea47fa7efee6f7f4bd3ed8c88c0ddb2 (patch) | |
| tree | 78dc2c700c1f792d0017e5aaeaf5cf70450f6aa5 /sys/kern/sys_pipe.c | |
| parent | 6593be6011643094d59b784a94408c81d3833e3d (diff) | |
Notes
Diffstat (limited to 'sys/kern/sys_pipe.c')
| -rw-r--r-- | sys/kern/sys_pipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 07e7ebc66c45..ebfe451b4f49 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: sys_pipe.c,v 1.32 1997/09/02 20:05:53 bde Exp $ + * $Id: sys_pipe.c,v 1.33 1997/09/14 02:43:25 peter Exp $ */ /* @@ -1002,8 +1002,8 @@ pipe_poll(fp, events, cred, p) } if (events & (POLLOUT | POLLWRNORM)) { - selrecord(p, &rpipe->pipe_sel); - rpipe->pipe_state |= PIPE_SEL; + selrecord(p, &wpipe->pipe_sel); + wpipe->pipe_state |= PIPE_SEL; } } |
