include: UV_FS_EVENT_RECURSIVE is a flag

It should not be the same as:

`UV_FS_EVENT_WATCH_ENTRY | UV_FS_EVENT_STAT`

Because we never meant that, and that's not how it works.
This commit is contained in:
Fedor Indutny 2013-10-31 01:08:14 +04:00
parent 43bef41031
commit 8a4aa22677

View File

@ -1873,7 +1873,7 @@ enum uv_fs_event_flags {
* flag does not affect individual files watched.
* This flag is currently not implemented yet on any backend.
*/
UV_FS_EVENT_WATCH_ENTRY = 1,
UV_FS_EVENT_WATCH_ENTRY = 1,
/*
* By default uv_fs_event will try to use a kernel interface such as inotify
@ -1889,7 +1889,7 @@ enum uv_fs_event_flags {
* (is ignoring) changes in it's subdirectories.
* This flag will override this behaviour on platforms that support it.
*/
UV_FS_EVENT_RECURSIVE = 3
UV_FS_EVENT_RECURSIVE = 4
};