diff options
author | 2004-07-15 15:27:22 +0000 | |
---|---|---|
committer | 2004-07-15 15:27:22 +0000 | |
commit | aa997538221a6a6be9959872ba8c3733aff3ee1d (patch) | |
tree | ec7c0c27b028c008546b5264ee0da049f4f7df52 /sys/netinet/tcp_usrreq.c | |
parent | missing bits from last commit (diff) | |
download | wireguard-openbsd-aa997538221a6a6be9959872ba8c3733aff3ee1d.tar.xz wireguard-openbsd-aa997538221a6a6be9959872ba8c3733aff3ee1d.zip |
tcp_trace() expects short, not int; ok deraadt
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 45ca4f686dc..1986d923a83 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.85 2004/04/27 17:51:33 otto Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.86 2004/07/15 15:27:22 markus Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -152,7 +152,7 @@ tcp_usrreq(so, req, m, nam, control) struct tcpcb *tp = NULL; int s; int error = 0; - int ostate; + short ostate; if (req == PRU_CONTROL) { #ifdef INET6 |