mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
security/commoncap: Use xattr security prefix len
Using the existing defined XATTR_SECURITY_PREFIX_LEN instead of sizeof(XATTR_SECURITY_PREFIX) - 1. Pretty simple cleanup. Signed-off-by: Carmeli Tamir <carmeli.tamir@gmail.com> Signed-off-by: James Morris <jamorris@linux.microsoft.com>
This commit is contained in:
parent
d1c5947ec6
commit
c5eaab1d13
@ -920,7 +920,7 @@ int cap_inode_setxattr(struct dentry *dentry, const char *name,
|
||||
|
||||
/* Ignore non-security xattrs */
|
||||
if (strncmp(name, XATTR_SECURITY_PREFIX,
|
||||
sizeof(XATTR_SECURITY_PREFIX) - 1) != 0)
|
||||
XATTR_SECURITY_PREFIX_LEN) != 0)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
@ -952,7 +952,7 @@ int cap_inode_removexattr(struct dentry *dentry, const char *name)
|
||||
|
||||
/* Ignore non-security xattrs */
|
||||
if (strncmp(name, XATTR_SECURITY_PREFIX,
|
||||
sizeof(XATTR_SECURITY_PREFIX) - 1) != 0)
|
||||
XATTR_SECURITY_PREFIX_LEN) != 0)
|
||||
return 0;
|
||||
|
||||
if (strcmp(name, XATTR_NAME_CAPS) == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user