diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-26 04:38:33 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-26 04:38:33 +0000 |
commit | 75ee0ea1c993820dd70956c631251d3a8dc9fcb6 (patch) | |
tree | 6d9a409885bace65359677dd48093aebf19a84e3 /sys | |
parent | f1c7b7477f262308ca412e5901f4ad910eabdb9d (diff) |
Style.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/uipc_socket2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c index 1f30c4a8ded..fec9a367b3a 100644 --- a/sys/kern/uipc_socket2.c +++ b/sys/kern/uipc_socket2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_socket2.c,v 1.16 2001/05/02 08:33:49 provos Exp $ */ +/* $OpenBSD: uipc_socket2.c,v 1.17 2001/05/26 04:38:32 angelos Exp $ */ /* $NetBSD: uipc_socket2.c,v 1.11 1996/02/04 02:17:55 christos Exp $ */ /* @@ -586,8 +586,8 @@ sbappendaddr(sb, asa, m0, control) register struct mbuf *m, *n; int space = asa->sa_len; -if (m0 && (m0->m_flags & M_PKTHDR) == 0) -panic("sbappendaddr"); + if (m0 && (m0->m_flags & M_PKTHDR) == 0) + panic("sbappendaddr"); if (m0) space += m0->m_pkthdr.len; for (n = control; n; n = n->m_next) { |