xfs: fix small mismerge in xfs_vn_mknod

Identation got messed up when merging the current_umask changes with
the generic ACL support.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Felix Blyakher <felixb@sgi.com>
Signed-off-by: Felix Blyakher <felixb@sgi.com>
This commit is contained in:
Christoph Hellwig 2009-06-12 11:19:11 -04:00 коммит произвёл Felix Blyakher
Родитель 493b87e5ed
Коммит e83f1eb6bf
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -225,8 +225,8 @@ xfs_vn_mknod(
if (IS_ERR(default_acl))
return -PTR_ERR(default_acl);
if (!default_acl)
mode &= ~current_umask();
if (!default_acl)
mode &= ~current_umask();
}
xfs_dentry_to_name(&name, dentry);