diff options
author | 1997-07-24 00:31:14 +0000 | |
---|---|---|
committer | 1997-07-24 00:31:14 +0000 | |
commit | 903fcacfccfa967a535c6c3701d0510290a7f300 (patch) | |
tree | ade04a1f98489d7f16fae026ea62d66c068ba66a /sys/netinet/udp_usrreq.c | |
parent | cmd is a u_long (diff) | |
download | wireguard-openbsd-903fcacfccfa967a535c6c3701d0510290a7f300.tar.xz wireguard-openbsd-903fcacfccfa967a535c6c3701d0510290a7f300.zip |
cmd is a u_long
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index ed53e8d88a8..9ec5b2ce0e7 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.10 1997/06/27 02:23:22 deraadt Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.11 1997/07/24 00:31:15 deraadt Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -527,7 +527,7 @@ udp_usrreq(so, req, m, addr, control) int s; if (req == PRU_CONTROL) - return (in_control(so, (long)m, (caddr_t)addr, + return (in_control(so, (u_long)m, (caddr_t)addr, (struct ifnet *)control)); if (inp == NULL && req != PRU_ATTACH) { error = EINVAL; |