Return NotSupported in xattr methods in FAT.

This commit is contained in:
2019-04-27 00:58:05 +01:00
parent 3b29d25f24
commit d4aed38d46

View File

@@ -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;
} }
} }
} }