summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_input.c
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2002-06-23 09:15:43 +0000
committerluigi <luigi@FreeBSD.org>2002-06-23 09:15:43 +0000
commit21d4ca5fd25d06c26dd48093b5d36350012314ab (patch)
tree5a84f34f03306b9bd5242132a7767569c40eb195 /sys/netinet/ip_input.c
parentd781bb858560179b268a621f683f6095be16dc49 (diff)
downloadFreeBSD-src-21d4ca5fd25d06c26dd48093b5d36350012314ab.zip
FreeBSD-src-21d4ca5fd25d06c26dd48093b5d36350012314ab.tar.gz
fix bad indentation and whitespace resulting from cut&paste
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r--sys/netinet/ip_input.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 1d29d54..2780622 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -287,8 +287,8 @@ ip_input(struct mbuf *m)
args.divert_rule = 0; /* divert cookie */
args.next_hop = NULL;
- /* Grab info from MT_TAG mbufs prepended to the chain. */
- for (; m && m->m_type == MT_TAG; m = m->m_next) {
+ /* Grab info from MT_TAG mbufs prepended to the chain. */
+ for (; m && m->m_type == MT_TAG; m = m->m_next) {
switch(m->m_tag_id) {
default:
printf("ip_input: unrecognised MT_TAG tag %d\n",
@@ -307,7 +307,7 @@ ip_input(struct mbuf *m)
args.next_hop = (struct sockaddr_in *)m->m_hdr.mh_data;
break;
}
- }
+ }
KASSERT(m != NULL && (m->m_flags & M_PKTHDR) != 0,
("ip_input: no HDR"));
@@ -463,9 +463,8 @@ iphack:
if (i == 0 && args.next_hop == NULL) /* common case */
goto pass;
if (DUMMYNET_LOADED && (i & IP_FW_PORT_DYNT_FLAG) != 0) {
- /* Send packet to the appropriate pipe */
-
- ip_dn_io_ptr(m, i&0xffff, DN_TO_IP_IN, &args);
+ /* Send packet to the appropriate pipe */
+ ip_dn_io_ptr(m, i&0xffff, DN_TO_IP_IN, &args);
return;
}
#ifdef IPDIVERT
@@ -817,7 +816,7 @@ found:
* Switch out to protocol's input routine.
*/
ipstat.ips_delivered++;
- if (args.next_hop && ip->ip_p == IPPROTO_TCP) {
+ if (args.next_hop && ip->ip_p == IPPROTO_TCP) {
/* TCP needs IPFORWARD info if available */
struct m_hdr tag;
OpenPOWER on IntegriCloud