Remove leading spaces before tabs spotted thanks to silby using

kwrite to read ip_input.c.
This commit is contained in:
Robert Watson 2007-05-16 20:46:58 +00:00
parent d19e16a72c
commit 6751f8364e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169625

View File

@ -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++;