From cc412412dbdcc65f3f693f8ac1451d92baea74c7 Mon Sep 17 00:00:00 2001 From: Hiren Panchasara Date: Wed, 2 Jul 2014 22:04:14 +0000 Subject: [PATCH] --- sys/netinet/tcp_input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 7f006695436..c4595e6d027 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -3472,8 +3472,8 @@ tcp_mss_update(struct tcpcb *tp, int offer, int mtuoffer, bcopy(&metrics, metricptr, sizeof(struct hc_metrics_lite)); /* - * If there's a discovered mtu int tcp hostcache, use it - * else, use the link mtu. + * If there's a discovered mtu in tcp hostcache, use it. + * Else, use the link mtu. */ if (metrics.rmx_mtu) mss = min(metrics.rmx_mtu, maxmtu) - min_protoh;