diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2009-01-29 23:59:10 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2009-01-29 23:59:10 +0000 |
commit | dced0d30c4613cc0138d6cbecbfebf80907a045a (patch) | |
tree | 4121c20e7a2f28c908cf05e10c7caea98c955380 | |
parent | 13f12bb1515bba7e136f815e45e8748acee9e3db (diff) |
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 */ |