diff options
author | Eric Paris <eparis@redhat.com> | 2011-04-28 15:11:20 -0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2011-04-28 15:15:51 -0400 |
commit | 2667991f60e67d28c495b8967aaabf84b4ccd560 (patch) | |
tree | 893c006121f2be1b44e270fc5b43d8f94435dc81 /security | |
parent | 4742600cf536c0c115b6f769eda82ee377d199c9 (diff) |
SELinux: rename filename_compute_type argument to *type instead of *con
filename_compute_type() takes as arguments the numeric value of the type of
the subject and target. It does not take a context. Thus the names are
misleading. Fix the argument names.
Signed-off-by: Eric Paris <eparis@redhat.com>
Reviewed-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/ss/services.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c index 3e1ae85c0130..78bb8100b02e 100644 --- a/security/selinux/ss/services.c +++ b/security/selinux/ss/services.c | |||
@@ -1359,13 +1359,13 @@ out: | |||
1359 | } | 1359 | } |
1360 | 1360 | ||
1361 | static void filename_compute_type(struct policydb *p, struct context *newcontext, | 1361 | static void filename_compute_type(struct policydb *p, struct context *newcontext, |
1362 | u32 scon, u32 tcon, u16 tclass, | 1362 | u32 stype, u32 ttype, u16 tclass, |
1363 | const char *objname) | 1363 | const char *objname) |
1364 | { | 1364 | { |
1365 | struct filename_trans *ft; | 1365 | struct filename_trans *ft; |
1366 | for (ft = p->filename_trans; ft; ft = ft->next) { | 1366 | for (ft = p->filename_trans; ft; ft = ft->next) { |
1367 | if (ft->stype == scon && | 1367 | if (ft->stype == stype && |
1368 | ft->ttype == tcon && | 1368 | ft->ttype == ttype && |
1369 | ft->tclass == tclass && | 1369 | ft->tclass == tclass && |
1370 | !strcmp(ft->name, objname)) { | 1370 | !strcmp(ft->name, objname)) { |
1371 | newcontext->type = ft->otype; | 1371 | newcontext->type = ft->otype; |