selinux: Change bool variable name to index.
authorPrarit Bhargava <prarit@redhat.com>
Thu, 14 Apr 2016 14:40:57 +0000 (10:40 -0400)
committerPaul Moore <paul@paul-moore.com>
Thu, 14 Apr 2016 15:24:50 +0000 (11:24 -0400)
security_get_bool_value(int bool) argument "bool" conflicts with
in-kernel macros such as BUILD_BUG().  This patch changes this to
index which isn't a type.

Cc: Paul Moore <paul@paul-moore.com>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Cc: Eric Paris <eparis@parisplace.org>
Cc: James Morris <james.l.morris@oracle.com>
Cc: "Serge E. Hallyn" <serge@hallyn.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Andrew Perepechko <anserper@ya.ru>
Cc: Jeff Vander Stoep <jeffv@google.com>
Cc: selinux@tycho.nsa.gov
Cc: Eric Paris <eparis@redhat.com>
Cc: Paul Moore <pmoore@redhat.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Acked-by: David Howells <dhowells@redhat.com>
[PM: wrapped description for checkpatch.pl, use "selinux:..." as subj]
Signed-off-by: Paul Moore <paul@paul-moore.com>
security/selinux/include/conditional.h
security/selinux/ss/services.c

index 67ce7a8d8301025850e6df50d86dcdb625b89314..ff4fddca9050382a83500a4e8943a5abb26fb581 100644 (file)
@@ -17,6 +17,6 @@ int security_get_bools(int *len, char ***names, int **values);
 
 int security_set_bools(int len, int *values);
 
-int security_get_bool_value(int bool);
+int security_get_bool_value(int index);
 
 #endif
index ebda97333f1b707c9e05cba9278c1c9693492d0d..89df64672b8974ab2fec0151ecdc1d35576f14a5 100644 (file)
@@ -2696,7 +2696,7 @@ out:
        return rc;
 }
 
-int security_get_bool_value(int bool)
+int security_get_bool_value(int index)
 {
        int rc;
        int len;
@@ -2705,10 +2705,10 @@ int security_get_bool_value(int bool)
 
        rc = -EFAULT;
        len = policydb.p_bools.nprim;
-       if (bool >= len)
+       if (index >= len)
                goto out;
 
-       rc = policydb.bool_val_to_struct[bool]->state;
+       rc = policydb.bool_val_to_struct[index]->state;
 out:
        read_unlock(&policy_rwlock);
        return rc;
This page took 0.027831 seconds and 5 git commands to generate.