diff options
author | Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | 2010-06-20 22:14:39 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-08-02 01:34:43 -0400 |
commit | 5448ec4f5062ef75ce74f8d7784d4cea9c46ad00 (patch) | |
tree | c4c742b928c799e03328e345e1d4af738f315afb /security/tomoyo/util.c | |
parent | 0617c7ff34dc9b1d641640c3953274bb2dbe21a6 (diff) |
TOMOYO: Use common code for domain transition control.
Use common code for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
"no_keep_domain" keywords.
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/util.c')
-rw-r--r-- | security/tomoyo/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tomoyo/util.c b/security/tomoyo/util.c index 20abba22af42..12a768e6ee3f 100644 --- a/security/tomoyo/util.c +++ b/security/tomoyo/util.c | |||
@@ -844,7 +844,7 @@ int tomoyo_init_request_info(struct tomoyo_request_info *r, | |||
844 | * | 844 | * |
845 | * Returns the last word of a line. | 845 | * Returns the last word of a line. |
846 | */ | 846 | */ |
847 | static const char *tomoyo_last_word(const char *name) | 847 | const char *tomoyo_last_word(const char *name) |
848 | { | 848 | { |
849 | const char *cp = strrchr(name, ' '); | 849 | const char *cp = strrchr(name, ' '); |
850 | if (cp) | 850 | if (cp) |