mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Return NotSupported in xattr methods in FAT.
This commit is contained in:
@@ -49,7 +49,7 @@ namespace DiscImageChef.Filesystems.FAT
|
|||||||
xattrs = null;
|
xattrs = null;
|
||||||
if(!mounted) return Errno.AccessDenied;
|
if(!mounted) return Errno.AccessDenied;
|
||||||
|
|
||||||
throw new NotImplementedException();
|
return Errno.NotSupported;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -63,7 +63,7 @@ namespace DiscImageChef.Filesystems.FAT
|
|||||||
{
|
{
|
||||||
if(!mounted) return Errno.AccessDenied;
|
if(!mounted) return Errno.AccessDenied;
|
||||||
|
|
||||||
throw new NotImplementedException();
|
return Errno.NotSupported;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user