diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-24 00:25:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-24 00:25:26 +0000 |
commit | d6bbca4adaca29de3692de98b5f50282141ba2e8 (patch) | |
tree | 5f57d572b657f6559b35549e1c2a22e3c45b5cfd /sys/netinet | |
parent | 06322f927915a0b2fc883c3eaf2ad3a4d96db91d (diff) |
cmd is a u_long
Diffstat (limited to 'sys/netinet')
-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 44451215edc..c9741a1c230 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.10 1997/06/14 05:49:41 deraadt Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.11 1997/07/24 00:25:25 deraadt Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -94,7 +94,7 @@ tcp_usrreq(so, req, m, nam, control) int ostate; if (req == PRU_CONTROL) - return (in_control(so, (long)m, (caddr_t)nam, + return (in_control(so, (u_long)m, (caddr_t)nam, (struct ifnet *)control)); if (control && control->m_len) { m_freem(control); |