diff options
author | Richard Weinberger <richard@nod.at> | 2016-01-02 22:12:42 (GMT) |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2016-01-10 11:33:47 (GMT) |
commit | 4fdd1d51ad5d059548c6539ac9d281f74d24bcbe (patch) | |
tree | b48f86c0a0086d146b7750ce78323ba0916f5d33 | |
parent | 170eb55f7d4ba9564736ba298a7d4985422db4cc (diff) | |
download | linux-4fdd1d51ad5d059548c6539ac9d281f74d24bcbe.tar.xz |
ubifs: Use XATTR_*_PREFIX_LEN
...instead of open coding it.
Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r-- | fs/ubifs/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c index e8b01b7..e53292d 100644 --- a/fs/ubifs/xattr.c +++ b/fs/ubifs/xattr.c @@ -267,7 +267,7 @@ static int check_namespace(const struct qstr *nm) if (!strncmp(nm->name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) { - if (nm->name[sizeof(XATTR_TRUSTED_PREFIX) - 1] == '\0') + if (nm->name[XATTR_TRUSTED_PREFIX_LEN] == '\0') return -EINVAL; type = TRUSTED_XATTR; } else if (!strncmp(nm->name, XATTR_USER_PREFIX, @@ -277,7 +277,7 @@ static int check_namespace(const struct qstr *nm) type = USER_XATTR; } else if (!strncmp(nm->name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN)) { - if (nm->name[sizeof(XATTR_SECURITY_PREFIX) - 1] == '\0') + if (nm->name[XATTR_SECURITY_PREFIX_LEN] == '\0') return -EINVAL; type = SECURITY_XATTR; } else |