diff options
author | 2000-01-13 05:52:42 +0000 | |
---|---|---|
committer | 2000-01-13 05:52:42 +0000 | |
commit | 0a543ff793a94d0b96d7d5403b24a7088f4272e6 (patch) | |
tree | a0c258488bdd01f4b2b3a50804fa94ca1e2162a3 | |
parent | Print number of ingress flows in /kern/ipsec (diff) | |
download | wireguard-openbsd-0a543ff793a94d0b96d7d5403b24a7088f4272e6.tar.xz wireguard-openbsd-0a543ff793a94d0b96d7d5403b24a7088f4272e6.zip |
Fix compilation error introduced recently; thanks mickey.
-rw-r--r-- | sys/netipx/ipx_ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c index 415a6d9aea0..dbf53d26df2 100644 --- a/sys/netipx/ipx_ip.c +++ b/sys/netipx/ipx_ip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx_ip.c,v 1.5 2000/01/11 19:31:56 fgsch Exp $ */ +/* $OpenBSD: ipx_ip.c,v 1.6 2000/01/13 05:52:42 fgsch Exp $ */ /*- * @@ -386,7 +386,7 @@ ipxip_route(m) (caddr_t)&ifr_ipxip, (struct ifnet *)ifn); satoipx_addr(ifr_ipxip.ifr_addr).ipx_host = - ipx_ifaddr->ia_addr.sipx_addr.x_host; + ipx_ifaddr.tqh_first->ia_addr.sipx_addr.ipx_host; return (ipx_control((struct socket *)0, (int)SIOCSIFADDR, (caddr_t)&ifr_ipxip, (struct ifnet *)ifn)); |