]> git.hungrycats.org Git - linux/commitdiff
Fix acl_set_handle() compile that got broken by the xattr
authorLinus Torvalds <torvalds@home.transmeta.com>
Thu, 13 Feb 2003 02:11:10 +0000 (18:11 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Thu, 13 Feb 2003 02:11:10 +0000 (18:11 -0800)
updates.

fs/ext3/acl.c

index 9b3290d5ce482c942b12539ecbec24c9643de5a6..9fe7afca0c605d6aa40cd6f217151a3e993b21dd 100644 (file)
@@ -231,7 +231,7 @@ ext3_set_acl(handle_t *handle, struct inode *inode, int type,
                        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)
                kfree(value);