diff options
author | rwatson <rwatson@FreeBSD.org> | 2007-05-16 20:46:58 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2007-05-16 20:46:58 +0000 |
commit | c6ef292874ce2df6fe29e0ac352d062ad031f569 (patch) | |
tree | bb6c23051c9d38f49cfa8b9456f3e71cd02ac76c | |
parent | 968987d7f94c975368bcdedb3eb3cd969eecbe80 (diff) | |
download | FreeBSD-src-c6ef292874ce2df6fe29e0ac352d062ad031f569.zip FreeBSD-src-c6ef292874ce2df6fe29e0ac352d062ad031f569.tar.gz |
Remove leading spaces before tabs spotted thanks to silby using
kwrite to read 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 2bf024b..640bce7 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -290,7 +290,7 @@ ip_input(struct mbuf *m) int dchg = 0; /* dest changed after fw */ struct in_addr odst; /* original dst address */ - M_ASSERTPKTHDR(m); + M_ASSERTPKTHDR(m); if (m->m_flags & M_FASTFWD_OURS) { /* @@ -301,8 +301,8 @@ ip_input(struct mbuf *m) /* Set up some basics that will be used later. */ ip = mtod(m, struct ip *); hlen = ip->ip_hl << 2; - goto ours; - } + goto ours; + } ipstat.ips_total++; |