From 499650a0336148ca9143c0d6051fbfa692dd3ea3 Mon Sep 17 00:00:00 2001 From: Jamie Gritton Date: Wed, 24 Jun 2009 22:06:56 +0000 Subject: [PATCH] Wrap a PR_VNET inside "#ifdef VIMAGE" since that the only place it applies. bz wants the blame for this. Noticed by: rwatson Approved by: bz (mentor) --- sys/kern/kern_jail.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/kern/kern_jail.c b/sys/kern/kern_jail.c index 3fe1ef7a139..c96307daa41 100644 --- a/sys/kern/kern_jail.c +++ b/sys/kern/kern_jail.c @@ -3151,9 +3151,11 @@ prison_check_af(struct ucred *cred, int af) KASSERT(cred != NULL, ("%s: cred is NULL", __func__)); pr = cred->cr_prison; +#ifdef VIMAGE /* Prisons with their own network stack are not limited. */ if (pr->pr_flags & PR_VNET) return (0); +#endif error = 0; switch (af)