Fix indentation (whitespace changes only).

MFC after:	6 days
This commit is contained in:
Bjoern A. Zeeb 2008-03-01 22:27:15 +00:00
parent 5bb4b07c5f
commit af92e6cf95

View File

@ -2832,11 +2832,11 @@ tcp_mss(struct tcpcb *tp, int offer)
tp->t_maxseg = mss;
#if (MCLBYTES & (MCLBYTES - 1)) == 0
if (mss > MCLBYTES)
mss &= ~(MCLBYTES-1);
if (mss > MCLBYTES)
mss &= ~(MCLBYTES-1);
#else
if (mss > MCLBYTES)
mss = mss / MCLBYTES * MCLBYTES;
if (mss > MCLBYTES)
mss = mss / MCLBYTES * MCLBYTES;
#endif
tp->t_maxseg = mss;