unbreak building kernel without option INET6

Reported by:	markp
This commit is contained in:
Hajimu UMEMOTO 2001-07-05 14:42:54 +00:00
parent df1cda58e4
commit 4d303ab842
2 changed files with 4 additions and 0 deletions

View File

@ -292,6 +292,7 @@ faithioctl(ifp, cmd, data)
return (error);
}
#ifdef INET6
/*
* XXX could be slow
* XXX could be layer violation to call sys/net from sys/netinet6
@ -321,4 +322,5 @@ faithprefix(in6)
RTFREE(rt);
return ret;
}
#endif
#endif /* NFAITH > 0 */

View File

@ -34,8 +34,10 @@
#define _NET_IF_FAITH_H_
#ifdef _KERNEL
#ifdef INET6
struct in6_addr;
int faithprefix __P((struct in6_addr *));
#endif
#endif
#endif /* _NET_IF_FAITH_H_ */