summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
authoritojun <itojun@openbsd.org>2003-12-10 07:22:42 +0000
committeritojun <itojun@openbsd.org>2003-12-10 07:22:42 +0000
commit64aa4cc78ccff050a0b2c5ad9dc5958c57855461 (patch)
treee7bd5d6b2fe03e2a238e6b5f4f83302f66c859b9 /sys/netinet/tcp_output.c
parentcorrect non-repetitive ID code, based on comments from niels provos. (diff)
downloadwireguard-openbsd-64aa4cc78ccff050a0b2c5ad9dc5958c57855461.tar.xz
wireguard-openbsd-64aa4cc78ccff050a0b2c5ad9dc5958c57855461.zip
de-register. deraadt ok
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index 33b0ac36f41..1c0b34a3902 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_output.c,v 1.58 2003/07/09 22:03:16 itojun Exp $ */
+/* $OpenBSD: tcp_output.c,v 1.59 2003/12/10 07:22:43 itojun Exp $ */
/* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */
/*
@@ -213,13 +213,13 @@ tcp_sack_adjust(struct tcpcb *tp)
*/
int
tcp_output(tp)
- register struct tcpcb *tp;
+ struct tcpcb *tp;
{
- register struct socket *so = tp->t_inpcb->inp_socket;
- register long len, win, txmaxseg;
+ struct socket *so = tp->t_inpcb->inp_socket;
+ long len, win, txmaxseg;
int off, flags, error;
- register struct mbuf *m;
- register struct tcphdr *th;
+ struct mbuf *m;
+ struct tcphdr *th;
u_char opt[MAX_TCPOPTLEN];
unsigned int optlen, hdrlen;
int idle, sendalot = 0;