diff options
author | 1998-02-25 11:17:42 +0000 | |
---|---|---|
committer | 1998-02-25 11:17:42 +0000 | |
commit | b7e4a36e4e6456451e6bdc713833967b8fe9f27c (patch) | |
tree | 51a558296d7d6062b71fc33fa9997693c1af5180 /sys/netinet/tcp_usrreq.c | |
parent | Update man page with EINVAL error code. (diff) | |
download | wireguard-openbsd-b7e4a36e4e6456451e6bdc713833967b8fe9f27c.tar.xz wireguard-openbsd-b7e4a36e4e6456451e6bdc713833967b8fe9f27c.zip |
please indent as the file is currently indented
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 14f360265bd..1b3a11cfc90 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.17 1998/02/25 03:45:15 angelos Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.18 1998/02/25 11:17:43 deraadt Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -191,8 +191,7 @@ tcp_usrreq(so, req, m, nam, control) */ case PRU_CONNECT: /* Trying to connect to some broadcast address */ - if (in_broadcast(sin->sin_addr, NULL)) - { + if (in_broadcast(sin->sin_addr, NULL)) { error = EINVAL; break; } |