Swap egress hooks for packets entering from the monitor hooks.

This commit is contained in:
Julian Elischer 2001-01-26 11:35:36 +00:00
parent 6258acf88f
commit 0633aaefef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71669

View File

@ -305,10 +305,10 @@ ngt_rcvdata(hook_p hook, item_p item)
dest = &sc->left;
} else if (hinfo == &sc->right2left) {
dup = NULL;
dest = &sc->left;
dest = &sc->right;
} else if (hinfo == &sc->left2right) {
dup = NULL;
dest = &sc->right;
dest = &sc->left;
} else
panic("%s: no hook!", __FUNCTION__);