> > 
> > +        /* Give a chance for ifp at first priority. This will help in case 
> > we
> > +         * the packet comes through the interface with VLAN's and the same
> > +         * MACs on several interfaces in a bridge. Also will save some 
> > circles
> > +         * in case dst interface is the physical input interface (eq ifp).
> > +         */
> > +        if (ifp->if_type == IFT_GIF
>                ^^^^^^^^^^^^^^^^^^^^^^^
>              is this check right?

No, it should read
if (ifp->if_type == IFT_GIF)
        continue;
if (memcmp(IF_LLADDR(.....))) {
        ...
}
-- 
Eygene
_______________________________________________
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to