diff options
author | David Howells <dhowells@redhat.com> | 2009-09-07 13:24:17 +0100 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-09-07 22:36:03 +1000 |
commit | be1d6a5f55b30042c57bdfbe7cb4761ed081def0 (patch) | |
tree | d35174819b852d4d212db79ef0ecb50d8919ceb3 /include/linux/security.h | |
parent | b6d9c25631e7c38dc7be220b04553068fb542683 (diff) |
KEYS: Fix default security_session_to_parent()
Fix the default security_session_to_parent() in linux/security.h to have a
body.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'include/linux/security.h')
-rw-r--r-- | include/linux/security.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index f4eb32d5b890..10a09257952b 100644 --- a/include/linux/security.h +++ b/include/linux/security.h @@ -2988,7 +2988,10 @@ static inline int security_key_getsecurity(struct key *key, char **_buffer) static inline int security_key_session_to_parent(const struct cred *cred, const struct cred *parent_cred, - struct key *key); + struct key *key) +{ + return 0; +} #endif #endif /* CONFIG_KEYS */ |