Added empty prison_check method to resolve linker error with RealTek Nic.

This commit is contained in:
Jennifer Averett
2012-04-04 14:10:52 -05:00
parent d75b748dc3
commit 6618e3e87f

View File

@@ -286,3 +286,11 @@ prison_get_ip6(struct ucred *cred, struct in6_addr *ia6)
{
return 0;
}
/*
* Return 0 if jails permit p1 to frob p2, otherwise ESRCH.
*/
int
prison_check(struct ucred *cred1, struct ucred *cred2)
{
return 0;
}