aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaiGai Kohei <kaigai@ak.jp.nec.com>2009-06-18 04:30:07 -0400
committerJames Morris <jmorris@namei.org>2009-06-18 07:53:44 -0400
commitcaabbdc07df4249f2ed516b2c3e2d6b0973bcbb3 (patch)
tree73e59a2c516edb4620b4e734eb7167651c466360
parent991ec02cdca33b03a132a0cacfe6f0aa0be9aa8d (diff)
cleanup in ss/services.c
It is a cleanup patch to cut down a line within 80 columns. Signed-off-by: KaiGai Kohei <kaigai@ak.jp.nec.com> -- security/selinux/ss/services.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Signed-off-by: James Morris <jmorris@namei.org>
-rw-r--r--security/selinux/ss/services.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index deeec6c013ae..cad5765ca1cb 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -479,7 +479,7 @@ static int context_struct_compute_av(struct context *scontext,
479 if ((constraint->permissions & (avd->allowed)) && 479 if ((constraint->permissions & (avd->allowed)) &&
480 !constraint_expr_eval(scontext, tcontext, NULL, 480 !constraint_expr_eval(scontext, tcontext, NULL,
481 constraint->expr)) { 481 constraint->expr)) {
482 avd->allowed = (avd->allowed) & ~(constraint->permissions); 482 avd->allowed &= ~(constraint->permissions);
483 } 483 }
484 constraint = constraint->next; 484 constraint = constraint->next;
485 } 485 }
@@ -498,8 +498,8 @@ static int context_struct_compute_av(struct context *scontext,
498 break; 498 break;
499 } 499 }
500 if (!ra) 500 if (!ra)
501 avd->allowed = (avd->allowed) & ~(PROCESS__TRANSITION | 501 avd->allowed &= ~(PROCESS__TRANSITION |
502 PROCESS__DYNTRANSITION); 502 PROCESS__DYNTRANSITION);
503 } 503 }
504 504
505 /* 505 /*