aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet6
diff options
context:
space:
mode:
authorAndre Oppermann <andre@FreeBSD.org>2006-09-06 21:51:59 +0000
committerAndre Oppermann <andre@FreeBSD.org>2006-09-06 21:51:59 +0000
commit233dcce1183e4f38c12053f062ba097bce6a8659 (patch)
treeb5d4180eab9fff2a64a310b178d7e69374bbdacf /sys/netinet6
parent723e1552018f340817e97ff68d9b0f8ad718c7ed (diff)
Notes
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/icmp6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/icmp6.c b/sys/netinet6/icmp6.c
index 470944c27632..21d4b3bbe9d1 100644
--- a/sys/netinet6/icmp6.c
+++ b/sys/netinet6/icmp6.c
@@ -1132,7 +1132,7 @@ icmp6_mtudisc_update(ip6cp, validated)
if (in6_setscope(&inc.inc6_faddr, m->m_pkthdr.rcvif, NULL))
return;
- if (mtu < tcp_maxmtu6(&inc)) {
+ if (mtu < tcp_maxmtu6(&inc, NULL)) {
tcp_hc_updatemtu(&inc, mtu);
icmp6stat.icp6s_pmtuchg++;
}