aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/security.h
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@dowhile0.org>2012-02-15 11:58:54 +0100
committerJiri Kosina <jkosina@suse.cz>2012-02-28 16:01:55 +0100
commitfbe74e361c6586cdd996bc2805033999dd469e99 (patch)
tree76ce4479bbb4391181b8f5bf4f558953ca367074 /include/linux/security.h
parentDocumentation: broken URL in libata.tmpl (diff)
downloadlinux-dev-fbe74e361c6586cdd996bc2805033999dd469e99.tar.xz
linux-dev-fbe74e361c6586cdd996bc2805033999dd469e99.zip
security: struct security_operations kerneldoc fix
unix_may_send hook has the prototype: int (*unix_may_send) (struct socket *sock, struct socket *other) so the documentation is wrongly referring to the second argument as @sock. Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/security.h')
-rw-r--r--include/linux/security.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/security.h b/include/linux/security.h
index 83c18e8c846d..c8949385e56e 100644
--- a/include/linux/security.h
+++ b/include/linux/security.h
@@ -812,7 +812,7 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
* Check permissions before connecting or sending datagrams from @sock to
* @other.
* @sock contains the socket structure.
- * @sock contains the peer socket structure.
+ * @other contains the peer socket structure.
* Return 0 if permission is granted.
*
* The @unix_stream_connect and @unix_may_send hooks were necessary because