Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/kern/kern_linker.c 92927 2002-03-22 04:56:09Z arr $
---
> * $FreeBSD: head/sys/kern/kern_linker.c 93159 2002-03-25 18:26:34Z arr $
701,703d700
< if (securelevel > 0) /* redundant, but that's OK */
< return (EPERM);
<
705a703,705
> if ((error = securelevel_gt(td->td_ucred, 0)) != 0)
> goto out;
>
748,750d747
< if (securelevel > 0) /* redundant, but that's OK */
< return (EPERM);
<
752a750,752
> if ((error = securelevel_gt(td->td_ucred, 0)) != 0)
> goto out;
>