diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-26 13:26:19 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 13:26:19 +0400 |
commit | 88bef5a4074e0568cf54df410f41065c06694d8a (patch) | |
tree | bc4d59f57ce315bcb16dad5491ab9983ab122d8a /fs/ext3/xattr_trusted.c | |
parent | 054a3fd824705543322d787893de9f3755151517 (diff) | |
parent | 024e8ac04453b3525448c31ef39848cf675ba6db (diff) | |
download | linux-88bef5a4074e0568cf54df410f41065c06694d8a.tar.xz |
Merge branch 'linus' into x86/urgent
Diffstat (limited to 'fs/ext3/xattr_trusted.c')
-rw-r--r-- | fs/ext3/xattr_trusted.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/ext3/xattr_trusted.c b/fs/ext3/xattr_trusted.c index 0327497a55ce..c7c41a410c4b 100644 --- a/fs/ext3/xattr_trusted.c +++ b/fs/ext3/xattr_trusted.c @@ -13,13 +13,11 @@ #include <linux/ext3_fs.h> #include "xattr.h" -#define XATTR_TRUSTED_PREFIX "trusted." - static size_t ext3_xattr_trusted_list(struct inode *inode, char *list, size_t list_size, const char *name, size_t name_len) { - const size_t prefix_len = sizeof(XATTR_TRUSTED_PREFIX)-1; + const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN; const size_t total_len = prefix_len + name_len + 1; if (!capable(CAP_SYS_ADMIN)) |