diff options
author | rwatson <rwatson@FreeBSD.org> | 2009-10-18 11:23:56 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2009-10-18 11:23:56 +0000 |
commit | ec5eebfd831fa55d1dd801771fc39a0d301100bd (patch) | |
tree | de7a939124c8975611d0f2e0948fd20f9acf07fb /sys/netinet/ip_input.c | |
parent | b2cb9a5d8152473e59a0e01822503199557f48cc (diff) | |
download | FreeBSD-src-ec5eebfd831fa55d1dd801771fc39a0d301100bd.zip FreeBSD-src-ec5eebfd831fa55d1dd801771fc39a0d301100bd.tar.gz |
Rewrap ip_input() comment so that it prints more nicely.
MFC after: 3 days
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r-- | sys/netinet/ip_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 50b66b5..e96fa80 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -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; |