diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-10-24 17:58:48 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-10-24 17:58:48 +0000 |
commit | 93dbf6e6044d297c9e6f4fa20f26fa281a75659d (patch) | |
tree | 26dac1b2d499a06f096b8912b2d8189d7bc33bf6 | |
parent | b51382e46bacde62596d117cfd3f6028043c49fa (diff) |
Fix indentation of closing brace.
From Florian Riehm
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 13f8b62be71..09c7b728717 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.280 2014/10/14 09:52:26 mpi Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.281 2014/10/24 17:58:47 bluhm Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -588,7 +588,7 @@ tcp_input(struct mbuf *m, ...) inp = m->m_pkthdr.pf.statekey->inp; if (inp && inp->inp_pf_sk) KASSERT(m->m_pkthdr.pf.statekey == inp->inp_pf_sk); -} + } #endif findpcb: if (inp == NULL) { |