braino in sample code.

picked up by phk.
This commit is contained in:
Julian Elischer 1999-11-01 05:27:44 +00:00
parent 5b42dac8ec
commit a923d43a67
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52736

View File

@ -306,10 +306,10 @@ ng_xxx_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
*/
dlci = ((struct XXX_hookinfo *) hook->private)->dlci;
if (dlci == 1023) {
ng_queue_data(hook->peer, m, meta);
return(ng_queue_data(hook->peer, m, meta));
}
}
ng_xxx_rcvdataq(hook, m, meta);
return(ng_xxx_rcvdataq(hook, m, meta));
}
/*