diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2010-12-10 14:07:08 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2010-12-10 14:07:08 +0000 |
| commit | 8edab182af1f019b9360f72e397bc35ed4123442 (patch) | |
| tree | 097bc9f6f01630c006a5e51a9be968b113db1598 | |
| parent | dd5ecaab446e8023fcd96bf807a3274c9ee88c6e (diff) | |
Notes
| -rw-r--r-- | sys/netinet/ip_fastfwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_fastfwd.c b/sys/netinet/ip_fastfwd.c index bb8c74a1530e..e84695e74652 100644 --- a/sys/netinet/ip_fastfwd.c +++ b/sys/netinet/ip_fastfwd.c @@ -215,7 +215,7 @@ ip_fastforward(struct mbuf *m) */ hlen = ip->ip_hl << 2; if (hlen < sizeof(struct ip)) { /* minimum header length */ - ipstat.ips_badlen++; + ipstat.ips_badhlen++; goto drop; } if (hlen > m->m_len) { |
