diff options
| author | Andrew Morton <[email protected]> | 2008-03-05 23:05:08 +0000 |
|---|---|---|
| committer | James Morris <[email protected]> | 2008-04-18 10:26:08 +0000 |
| commit | f0115e6c8980ea9125a17858291c90ecd990bc1c (patch) | |
| tree | f9b665c465b6813c421fc60660068197d178c53a /security/selinux/hooks.c | |
| parent | security: replace remaining __FUNCTION__ occurrences (diff) | |
| download | kernel-f0115e6c8980ea9125a17858291c90ecd990bc1c.tar.gz kernel-f0115e6c8980ea9125a17858291c90ecd990bc1c.zip | |
security: code cleanup
ERROR: "(foo*)" should be "(foo *)"
#168: FILE: security/selinux/hooks.c:2656:
+ "%s, rc=%d\n", __func__, (char*)value, -rc);
total: 1 errors, 0 warnings, 195 lines checked
./patches/security-replace-remaining-__function__-occurences.patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Please run checkpatch prior to sending patches
Cc: Harvey Harrison <[email protected]>
Cc: James Morris <[email protected]>
Cc: Stephen Smalley <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: James Morris <[email protected]>
Diffstat (limited to 'security/selinux/hooks.c')
| -rw-r--r-- | security/selinux/hooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 74bb74b4db08..973e31eb1097 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -2671,7 +2671,7 @@ static void selinux_inode_post_setxattr(struct dentry *dentry, char *name, rc = security_context_to_sid(value, size, &newsid); if (rc) { printk(KERN_WARNING "%s: unable to obtain SID for context " - "%s, rc=%d\n", __func__, (char*)value, -rc); + "%s, rc=%d\n", __func__, (char *)value, -rc); return; } |
