1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-28 08:02:54 +00:00

if you have taken the mbuf out of the message object, then if you pass

the object to someone else, you need to put the mbuf back into it first..
This commit is contained in:
Julian Elischer 2002-06-09 07:28:35 +00:00
parent e02ef09616
commit ed2836692f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98063

View File

@ -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)