aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_spppsubr.c
diff options
context:
space:
mode:
authorRoman Kurakin <rik@FreeBSD.org>2004-06-28 15:32:24 +0000
committerRoman Kurakin <rik@FreeBSD.org>2004-06-28 15:32:24 +0000
commite874bf6648fbe7337498d1f84effd80450f6f4c8 (patch)
treec840167789c7b8460eb1cd58ce08599718885ff3 /sys/net/if_spppsubr.c
parent88c3541690980f08bc880ad63c399bb5642bc33d (diff)
downloadsrc-e874bf6648fbe7337498d1f84effd80450f6f4c8.tar.gz
src-e874bf6648fbe7337498d1f84effd80450f6f4c8.zip
Do not m_free packet since IF_HANDOFF (called from netisr_queue) will
do it for us, just count it.
Notes
Notes: svn path=/head/; revision=131241
Diffstat (limited to 'sys/net/if_spppsubr.c')
-rw-r--r--sys/net/if_spppsubr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c
index 08211725194f..bfc01f0b9f77 100644
--- a/sys/net/if_spppsubr.c
+++ b/sys/net/if_spppsubr.c
@@ -720,7 +720,7 @@ sppp_input(struct ifnet *ifp, struct mbuf *m)
if (debug)
log(LOG_DEBUG, SPP_FMT "protocol queue overflow\n",
SPP_ARGS(ifp));
- goto drop;
+ goto drop2;
}
if (do_account)
/*