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 | |
parent | b6d9c25631e7c38dc7be220b04553068fb542683 (diff) | |
download | op-kernel-dev-be1d6a5f55b30042c57bdfbe7cb4761ed081def0.zip op-kernel-dev-be1d6a5f55b30042c57bdfbe7cb4761ed081def0.tar.gz |
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>
-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 f4eb32d..10a09257 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 */ |