diff options
author | 2009-01-29 23:59:09 +0000 | |
---|---|---|
committer | 2009-01-29 23:59:09 +0000 | |
commit | ae65f8142f3eabcdb12c63550f8a722d687e5904 (patch) | |
tree | 17c59cfc1866a88689e6a6aa4fd6e14daa870b35 | |
parent | pass "xerrok" status across the execution call stack to more closely (diff) | |
download | wireguard-openbsd-ae65f8142f3eabcdb12c63550f8a722d687e5904.tar.xz wireguard-openbsd-ae65f8142f3eabcdb12c63550f8a722d687e5904.zip |
KNF (whitespace fixes). ok grunk@
-rw-r--r-- | sys/sys/socketvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h index 8a17f0d6763..f5ec165fb52 100644 --- a/sys/sys/socketvar.h +++ b/sys/sys/socketvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: socketvar.h,v 1.43 2008/11/07 17:31:24 deraadt Exp $ */ +/* $OpenBSD: socketvar.h,v 1.44 2009/01/29 23:59:09 bluhm Exp $ */ /* $NetBSD: socketvar.h,v 1.18 1996/02/09 18:25:38 christos Exp $ */ /*- @@ -172,8 +172,8 @@ struct socket { /* can we write something to so? */ #define sowriteable(so) \ ((sbspace(&(so)->so_snd) >= (so)->so_snd.sb_lowat && \ - (((so)->so_state&SS_ISCONNECTED) || \ - ((so)->so_proto->pr_flags&PR_CONNREQUIRED)==0)) || \ + (((so)->so_state & SS_ISCONNECTED) || \ + ((so)->so_proto->pr_flags & PR_CONNREQUIRED)==0)) || \ ((so)->so_state & SS_CANTSENDMORE) || (so)->so_error) /* adjust counters in sb reflecting allocation of m */ |