From dced0d30c4613cc0138d6cbecbfebf80907a045a Mon Sep 17 00:00:00 2001 From: Alexander Bluhm Date: Thu, 29 Jan 2009 23:59:10 +0000 Subject: KNF (whitespace fixes). ok grunk@ --- sys/sys/socketvar.h | 6 +++--- 1 file 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 */ -- cgit v1.2.3