summaryrefslogtreecommitdiffstats
path: root/include/linux/security.h
diff options
context:
space:
mode:
authorDavid Howells2009-09-07 14:24:17 +0200
committerJames Morris2009-09-07 14:36:03 +0200
commitbe1d6a5f55b30042c57bdfbe7cb4761ed081def0 (patch)
treed35174819b852d4d212db79ef0ecb50d8919ceb3 /include/linux/security.h
parentSecurity/SELinux: includecheck fix kernel/sysctl.c (diff)
downloadkernel-qcow2-linux-be1d6a5f55b30042c57bdfbe7cb4761ed081def0.tar.gz
kernel-qcow2-linux-be1d6a5f55b30042c57bdfbe7cb4761ed081def0.tar.xz
kernel-qcow2-linux-be1d6a5f55b30042c57bdfbe7cb4761ed081def0.zip
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.h5
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 */