From 08fb9c82f6a1e785b0c657e5a77ba8dd814bb242 Mon Sep 17 00:00:00 2001 From: rwatson Date: Tue, 6 Nov 2001 19:56:58 +0000 Subject: o Remove double-indentation of sysctl_kern_securelvl. This change is consistent with the one other function in the file, and prevents long lines in up-coming changes. This nominally pulls kern_mib.c a little further down the long path to style(9) compliance. --- sys/kern/kern_mib.c | 61 ++++++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 31 deletions(-) (limited to 'sys/kern/kern_mib.c') diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c index c59c9aa..008c7f7 100644 --- a/sys/kern/kern_mib.c +++ b/sys/kern/kern_mib.c @@ -183,42 +183,41 @@ int securelevel = -1; static int sysctl_kern_securelvl(SYSCTL_HANDLER_ARGS) { - int error, level; - - /* - * If the process is in jail, return the maximum of the - * global and local levels; otherwise, return the global - * level. - */ - if (req->p->p_ucred->cr_prison != NULL) - level = imax(securelevel, - req->p->p_ucred->cr_prison->pr_securelevel); - else - level = securelevel; - error = sysctl_handle_int(oidp, &level, 0, req); - if (error || !req->newptr) - return (error); - /* - * Permit update only if the new securelevel exceeds the - * global level, and local level if any. - */ - if (req->p->p_ucred->cr_prison != NULL) { + int error, level; + + /* + * If the process is in jail, return the maximum of the global and + * local levels; otherwise, return the global level. + */ + if (req->p->p_ucred->cr_prison != NULL) + level = imax(securelevel, + req->p->p_ucred->cr_prison->pr_securelevel); + else + level = securelevel; + error = sysctl_handle_int(oidp, &level, 0, req); + if (error || !req->newptr) + return (error); + /* + * Permit update only if the new securelevel exceeds the + * global level, and local level if any. + */ + if (req->p->p_ucred->cr_prison != NULL) { #ifdef REGRESSION - if (!regression_securelevel_nonmonotonic) + if (!regression_securelevel_nonmonotonic) #endif /* !REGRESSION */ - if (level < imax(securelevel, - req->p->p_ucred->cr_prison->pr_securelevel)) - return (EPERM); + if (level < imax(securelevel, + req->p->p_ucred->cr_prison->pr_securelevel)) + return (EPERM); req->p->p_ucred->cr_prison->pr_securelevel = level; - } else { + } else { #ifdef REGRESSION - if (!regression_securelevel_nonmonotonic) + if (!regression_securelevel_nonmonotonic) #endif /* !REGRESSION */ - if (level < securelevel) - return (EPERM); - securelevel = level; - } - return (error); + if (level < securelevel) + return (EPERM); + securelevel = level; + } + return (error); } SYSCTL_PROC(_kern, KERN_SECURELVL, securelevel, -- cgit v1.1