diff options
| author | Boris Popov <bp@FreeBSD.org> | 2001-02-01 08:34:38 +0000 |
|---|---|---|
| committer | Boris Popov <bp@FreeBSD.org> | 2001-02-01 08:34:38 +0000 |
| commit | 8f35015c776e404acd7843f61387a97c1b074ac5 (patch) | |
| tree | a1416ab29fc5e1f26edf5e0e27f77934f0961da7 | |
| parent | 05f6ee66eabb5e341c3819949280834afca8fba2 (diff) | |
Notes
| -rw-r--r-- | sys/net/if_ef.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ef.c b/sys/net/if_ef.c index f11fa70164d5..d56e9c5abc0b 100644 --- a/sys/net/if_ef.c +++ b/sys/net/if_ef.c @@ -234,7 +234,7 @@ ef_start(struct ifnet *ifp) break; if (ifp->if_bpf) bpf_mtap(ifp, m); - if (! IF_HANDOFF(&p->if_snd, m, NULL)) { + if (! IF_HANDOFF(&p->if_snd, m, p)) { ifp->if_oerrors++; continue; } @@ -320,7 +320,7 @@ static int ef_input(struct ifnet *ifp, struct ether_header *eh, struct mbuf *m) { u_short ether_type; - int s, ft = -1; + int ft = -1; struct ifqueue *inq; struct efnet *efp; struct ifnet *eifp; |
