aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2011-04-28 15:11:20 -0400
committerEric Paris <eparis@redhat.com>2011-04-28 15:15:51 -0400
commit4742600cf536c0c115b6f769eda82ee377d199c9 (patch)
tree599922c770c628c3d484ee7460fe1fc361c3c509 /security
parent92f4250901476fcadc4f52ace36e453c61f5591d (diff)
downloadkernel_samsung_smdk4412-4742600cf536c0c115b6f769eda82ee377d199c9.zip
kernel_samsung_smdk4412-4742600cf536c0c115b6f769eda82ee377d199c9.tar.gz
kernel_samsung_smdk4412-4742600cf536c0c115b6f769eda82ee377d199c9.tar.bz2
SELinux: fix comment to state filename_compute_type takes an objname not a qstr
filename_compute_type used to take a qstr, but it now takes just a name. Fix the comments to indicate it is an objname, not a qstr. Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/ss/services.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index 211c0ad..3e1ae85 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -1478,7 +1478,7 @@ static int security_compute_sid(u32 ssid,
newcontext.type = avdatum->data;
}
- /* if we have a qstr this is a file trans check so check those rules */
+ /* if we have a objname this is a file trans check so check those rules */
if (objname)
filename_compute_type(&policydb, &newcontext, scontext->type,
tcontext->type, tclass, objname);