lib/fs: Do not follow symlinks in watcher on solaris (fixes #8020) (#8223)

This commit is contained in:
Greg
2022-03-24 00:36:43 -07:00
committed by GitHub
parent 5f383923df
commit 53926a1ae6

View File

@@ -12,7 +12,7 @@ package fs
import "github.com/syncthing/notify"
const (
subEventMask = notify.Create | notify.FileModified | notify.FileRenameFrom | notify.FileDelete | notify.FileRenameTo
subEventMask = notify.Create | notify.FileModified | notify.FileRenameFrom | notify.FileDelete | notify.FileRenameTo | notify.FileNoFollow
permEventMask = notify.FileAttrib
rmEventMask = notify.FileDelete | notify.FileRenameFrom
)