Fix build.

This commit is contained in:
Gleb Smirnoff 2006-01-23 20:10:49 +00:00
parent 336ec6a116
commit 1c0b0f523d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154733

View file

@ -858,7 +858,7 @@ ip_next_mtu(mtu, dir)
size = (sizeof mtutab) / (sizeof mtutab[0]);
if (dir >= 0) {
for (i = 0; i < size; i++) {
for (i = 0; i < size; i++)
if (mtu > mtutab[i])
return mtutab[i];
} else {