Don't check IFF_RUNNING in previous change.

The flag is sometimes unset if the interface has IPv6 link-local
address only.
This commit is contained in:
Hidetoshi Shimokawa 2002-10-25 17:31:03 +00:00
parent a89c1d30b2
commit 6fe6a00661
1 changed files with 2 additions and 2 deletions

View File

@ -459,7 +459,7 @@ tunoutput(
return (EHOSTDOWN);
}
if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) {
if ((ifp->if_flags & IFF_UP) != IFF_UP) {
m_freem (m0);
return (EHOSTDOWN);
}
@ -712,7 +712,7 @@ tunwrite(dev_t dev, struct uio *uio, int flag)
TUNDEBUG("%s%d: tunwrite\n", ifp->if_name, ifp->if_unit);
if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
if ((ifp->if_flags & IFF_UP) != IFF_UP)
/* ignore silently */
return (0);