svn commit: r268183 - head/sys/netinet

Hiren Panchasara hiren at FreeBSD.org
Wed Jul 2 22:04:16 UTC 2014


Author: hiren
Date: Wed Jul  2 22:04:14 2014
New Revision: 268183
URL: http://svnweb.freebsd.org/changeset/base/268183

Log:
  

Modified:
  head/sys/netinet/tcp_input.c

Modified: head/sys/netinet/tcp_input.c
==============================================================================
--- head/sys/netinet/tcp_input.c	Wed Jul  2 22:04:12 2014	(r268182)
+++ head/sys/netinet/tcp_input.c	Wed Jul  2 22:04:14 2014	(r268183)
@@ -3472,8 +3472,8 @@ tcp_mss_update(struct tcpcb *tp, int off
 		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;


More information about the svn-src-all mailing list