diff options
-rw-r--r-- | pflocal/sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pflocal/sock.c b/pflocal/sock.c index 0b11c54a..11c72842 100644 --- a/pflocal/sock.c +++ b/pflocal/sock.c @@ -458,14 +458,14 @@ sock_shutdown (struct sock *sock, unsigned flags) sock->flags |= flags; if (flags & SOCK_SHUTDOWN_READ && !(old_flags & SOCK_SHUTDOWN_READ)) - /* Shutdown the read half. */ { + /* Shutdown the read half. */ read_pipe = sock->read_pipe; sock->read_pipe = NULL; } if (flags & SOCK_SHUTDOWN_WRITE && !(old_flags & SOCK_SHUTDOWN_WRITE)) - /* Shutdown the write half. */ { + /* Shutdown the write half. */ write_pipe = sock->write_pipe; sock->write_pipe = NULL; } |