IPFilter munges multicast address packets on the loopback interface.

Submitted by:	Frank Zolf
Approved by:	jkh
MFC after:	0
This commit is contained in:
Darren Reed 2001-09-12 22:06:36 +00:00
parent 855cda2e3b
commit c0c3937c8f

View File

@ -806,7 +806,7 @@ int out;
/*
* disable delayed checksums.
*/
if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
if (out && (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA)) {
in_delayed_cksum(m);
m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
}