diff options
author | 2002-06-09 03:38:40 +0000 | |
---|---|---|
committer | 2002-06-09 03:38:40 +0000 | |
commit | 57b6eae0580d89ec21efdc09fb9fefa8580c37c5 (patch) | |
tree | 955f40a4da347da4204ab093ac46819fda25a8de | |
parent | a step towards consistancy; in general: (diff) | |
download | wireguard-openbsd-57b6eae0580d89ec21efdc09fb9fefa8580c37c5.tar.xz wireguard-openbsd-57b6eae0580d89ec21efdc09fb9fefa8580c37c5.zip |
make gem compile, arpcom is sc_arpcom.
-rw-r--r-- | sys/dev/ic/gem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c index 26bcd76b6dc..20b3564ac25 100644 --- a/sys/dev/ic/gem.c +++ b/sys/dev/ic/gem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gem.c,v 1.23 2002/06/09 03:14:18 todd Exp $ */ +/* $OpenBSD: gem.c,v 1.24 2002/06/09 03:38:40 drahn Exp $ */ /* $NetBSD: gem.c,v 1.1 2001/09/16 00:11:43 eeh Exp $ */ /* @@ -1361,7 +1361,7 @@ gem_ioctl(ifp, cmd, data) s = splimp(); - if ((error = ether_ioctl(ifp, &sc->arpcom, cmd, data)) > 0) { + if ((error = ether_ioctl(ifp, &sc->sc_arpcom, cmd, data)) > 0) { splx(s); return (error); } @@ -1375,7 +1375,7 @@ gem_ioctl(ifp, cmd, data) #ifdef INET case AF_INET: gem_init(ifp); - arp_ifinit(&sc->arpcom, ifa); + arp_ifinit(&sc->sc_arpcom, ifa); break; #endif #ifdef NS |