Symbolic links are not supported.

This commit is contained in:
2016-07-21 18:39:38 +01:00
parent 878058f232
commit 99a70b360f

View File

@@ -44,7 +44,8 @@ namespace DiscImageChef.Filesystems.LisaFS
{
public override Errno ReadLink(string path, ref string dest)
{
return Errno.NotImplemented;
// LisaFS does not support symbolic links (afaik)
return Errno.NotSupported;
}
public override Errno ReadDir(string path, ref List<string> contents)