diff options
author | 2002-06-09 03:47:23 +0000 | |
---|---|---|
committer | 2002-06-09 03:47:23 +0000 | |
commit | 0ff90717c74290d9f48f859ec6abb5d19b7ff57e (patch) | |
tree | 99f62f0e7f3f953d2524b6f8d1c961328d488c24 | |
parent | o Kill "garbage" global (unused) (diff) | |
download | wireguard-openbsd-0ff90717c74290d9f48f859ec6abb5d19b7ff57e.tar.xz wireguard-openbsd-0ff90717c74290d9f48f859ec6abb5d19b7ff57e.zip |
more arpcom ->sc_arpcom missing.
-rw-r--r-- | sys/arch/macppc/dev/if_wi_obio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/dev/if_wi_obio.c b/sys/arch/macppc/dev/if_wi_obio.c index f1a71aabe67..4af91bfd966 100644 --- a/sys/arch/macppc/dev/if_wi_obio.c +++ b/sys/arch/macppc/dev/if_wi_obio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_obio.c,v 1.4 2002/03/14 01:26:36 millert Exp $ */ +/* $OpenBSD: if_wi_obio.c,v 1.5 2002/06/09 03:47:23 drahn Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -145,7 +145,7 @@ wi_obio_detach(dev, flags) { struct wi_obio_softc *psc = (struct wi_obio_softc *)dev; struct wi_softc *sc = &psc->sc_wi; - struct ifnet *ifp = &sc->arpcom.ac_if; + struct ifnet *ifp = &sc->sc_arpcom.ac_if; /* obio_io_unmap(psc->sc_pf, psc->sc_io_window); @@ -166,7 +166,7 @@ wi_obio_activate(dev, act) { struct wi_obio_softc *psc = (struct wi_obio_softc *)dev; struct wi_softc *sc = &psc->sc_wi; - struct ifnet *ifp = &sc->arpcom.ac_if; + struct ifnet *ifp = &sc->sc_arpcom.ac_if; int s; s = splnet(); |