summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/netgraph/ng_ppp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netgraph/ng_ppp.c b/sys/netgraph/ng_ppp.c
index 7c435a8..d723b32 100644
--- a/sys/netgraph/ng_ppp.c
+++ b/sys/netgraph/ng_ppp.c
@@ -906,8 +906,10 @@ ng_ppp_input(node_p node, int bypass, int linkNum, item_p item)
break;
case PROT_MP:
if (priv->conf.enableMultilink
- && linkNum != NG_PPP_BUNDLE_LINKNUM)
+ && linkNum != NG_PPP_BUNDLE_LINKNUM) {
+ NGI_M(item) = m;
return ng_ppp_mp_input(node, linkNum, item);
+ }
break;
case PROT_APPLETALK:
if (priv->conf.enableAtalk)
OpenPOWER on IntegriCloud