svn commit: r198196 - head/sys/netinet

Robert Watson rwatson at FreeBSD.org
Sun Oct 18 11:23:57 UTC 2009


Author: rwatson
Date: Sun Oct 18 11:23:56 2009
New Revision: 198196
URL: http://svn.freebsd.org/changeset/base/198196

Log:
  Rewrap ip_input() comment so that it prints more nicely.
  
  MFC after:	3 days

Modified:
  head/sys/netinet/ip_input.c

Modified: head/sys/netinet/ip_input.c
==============================================================================
--- head/sys/netinet/ip_input.c	Sun Oct 18 00:46:59 2009	(r198195)
+++ head/sys/netinet/ip_input.c	Sun Oct 18 11:23:56 2009	(r198196)
@@ -530,9 +530,9 @@ tooshort:
 	}
 	if ((dchg = (m_tag_find(m, PACKET_TAG_IPFORWARD, NULL) != NULL)) != 0) {
 		/*
-		 * Directly ship on the packet.  This allows to forward packets
-		 * that were destined for us to some other directly connected
-		 * host.
+		 * Directly ship on the packet.  This allows to forward
+		 * packets that were destined for us to some other directly
+		 * connected host.
 		 */
 		ip_forward(m, dchg);
 		return;


More information about the svn-src-all mailing list