diff options
author | Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | 2010-06-17 03:52:29 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-08-02 01:34:40 -0400 |
commit | a98aa4debe2728abb3353e35fc5d110dcc0d7f0d (patch) | |
tree | 0334194761e26961339dd126e997c23e4060ce72 /security/tomoyo/file.c | |
parent | 5fb49870e6d48d81d8ca0e1ef979073dc9a820f7 (diff) |
TOMOYO: Merge tomoyo_path_group and tomoyo_number_group
"struct tomoyo_path_group" and "struct tomoyo_number_group" are identical.
Rename tomoyo_path_group/tomoyo_number_group to tomoyo_group and
tomoyo_path_group_member to tomoyo_path_group and
tomoyo_number_group_member to tomoyo_unmber_group.
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/tomoyo/file.c')
-rw-r--r-- | security/tomoyo/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/tomoyo/file.c b/security/tomoyo/file.c index de87c45ba9d0..6c2ba69fc89e 100644 --- a/security/tomoyo/file.c +++ b/security/tomoyo/file.c | |||
@@ -90,7 +90,7 @@ void tomoyo_put_name_union(struct tomoyo_name_union *ptr) | |||
90 | if (!ptr) | 90 | if (!ptr) |
91 | return; | 91 | return; |
92 | if (ptr->is_group) | 92 | if (ptr->is_group) |
93 | tomoyo_put_path_group(ptr->group); | 93 | tomoyo_put_group(ptr->group); |
94 | else | 94 | else |
95 | tomoyo_put_name(ptr->filename); | 95 | tomoyo_put_name(ptr->filename); |
96 | } | 96 | } |
@@ -106,7 +106,7 @@ bool tomoyo_compare_name_union(const struct tomoyo_path_info *name, | |||
106 | void tomoyo_put_number_union(struct tomoyo_number_union *ptr) | 106 | void tomoyo_put_number_union(struct tomoyo_number_union *ptr) |
107 | { | 107 | { |
108 | if (ptr && ptr->is_group) | 108 | if (ptr && ptr->is_group) |
109 | tomoyo_put_number_group(ptr->group); | 109 | tomoyo_put_group(ptr->group); |
110 | } | 110 | } |
111 | 111 | ||
112 | bool tomoyo_compare_number_union(const unsigned long value, | 112 | bool tomoyo_compare_number_union(const unsigned long value, |