NTFS: $EA attributes can be both resident non-resident.

Minor tidying.

Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
This commit is contained in:
Anton Altaparmakov 2005-10-19 12:21:19 +01:00
parent e087a412b4
commit 7d0ffdb279
5 changed files with 35 additions and 14 deletions

View file

@ -1411,7 +1411,7 @@ int ntfs_attr_can_be_non_resident(const ntfs_volume *vol, const ATTR_TYPE type)
*/
int ntfs_attr_can_be_resident(const ntfs_volume *vol, const ATTR_TYPE type)
{
if (type == AT_INDEX_ALLOCATION || type == AT_EA)
if (type == AT_INDEX_ALLOCATION)
return -EPERM;
return 0;
}