Commit 5f49bfc9 authored by Linus Torvalds's avatar Linus Torvalds

Fix acl_set_handle() compile that got broken by the xattr

updates.
parent 180fb54b
...@@ -231,7 +231,7 @@ ext3_set_acl(handle_t *handle, struct inode *inode, int type, ...@@ -231,7 +231,7 @@ ext3_set_acl(handle_t *handle, struct inode *inode, int type,
return (int)PTR_ERR(value); return (int)PTR_ERR(value);
} }
error = ext3_xattr_set(handle, inode, name_index, "", value, size, 0); error = ext3_xattr_set_handle(handle, inode, name_index, "", value, size, 0);
if (value) if (value)
kfree(value); kfree(value);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment