summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_usrreq.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1998-06-27 02:42:40 +0000
committerderaadt <deraadt@openbsd.org>1998-06-27 02:42:40 +0000
commit43d771cfc099b7fd3062c891e465355a1e93e37e (patch)
treef52b8db4eeac82df459d81a632b8c23cccc84576 /sys/netinet/tcp_usrreq.c
parentDocument EINVAL if peer address is multicast. (diff)
downloadwireguard-openbsd-43d771cfc099b7fd3062c891e465355a1e93e37e.tar.xz
wireguard-openbsd-43d771cfc099b7fd3062c891e465355a1e93e37e.zip
indent
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r--sys/netinet/tcp_usrreq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index 6bd92c73008..880b21ec5e0 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_usrreq.c,v 1.27 1998/06/27 02:31:58 deraadt Exp $ */
+/* $OpenBSD: tcp_usrreq.c,v 1.28 1998/06/27 02:42:41 deraadt Exp $ */
/* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */
/*
@@ -70,7 +70,7 @@
#include <dev/rndvar.h>
#ifdef IPSEC
-extern int check_ipsec_policy __P((struct inpcb *, u_int32_t));
+extern int check_ipsec_policy __P((struct inpcb *, u_int32_t));
#endif
/*
@@ -680,7 +680,7 @@ tcp_sysctl(name, namelen, oldp, oldlenp, newp, newlen)
case TCPCTL_SENDSPACE:
return (sysctl_int(oldp, oldlenp, newp, newlen,&tcp_sendspace));
case TCPCTL_IDENT:
- return (tcp_ident(oldp, oldlenp, newp, newlen));
+ return (tcp_ident(oldp, oldlenp, newp, newlen));
default:
return (ENOPROTOOPT);
}