Fix indentation (whitespace changes only).

MFC after:	6 days
This commit is contained in:
bz 2008-03-01 22:27:15 +00:00
parent ebfccf6289
commit e9e93481a8

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;