diff options
| -rw-r--r-- | internal/syscallcompat/getdents_linux.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/internal/syscallcompat/getdents_linux.go b/internal/syscallcompat/getdents_linux.go index 2425326..e3a2c4a 100644 --- a/internal/syscallcompat/getdents_linux.go +++ b/internal/syscallcompat/getdents_linux.go @@ -43,7 +43,7 @@ func getdents(fd int) ([]fuse.DirEntry, error) {  			continue  		} else if err != nil {  			if smartBuf.Len() > 0 { -				tlog.Warn.Printf("warning: unix.Getdents returned errno %d in the middle of data", err.(syscall.Errno)) +				tlog.Warn.Printf("warning: unix.Getdents returned errno %d in the middle of data ( https://github.com/rfjakob/gocryptfs/issues/483 )", err.(syscall.Errno))  				return nil, syscall.EIO  			}  			return nil, err | 
