diff options
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/pvfs_notify.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_notify.c b/source4/ntvfs/posix/pvfs_notify.c index 121ba499b3..d2fdbfc49a 100644 --- a/source4/ntvfs/posix/pvfs_notify.c +++ b/source4/ntvfs/posix/pvfs_notify.c @@ -145,7 +145,11 @@ static NTSTATUS pvfs_notify_setup(struct pvfs_state *pvfs, struct pvfs_file *f, e.filter = filter; e.path = f->handle->name->full_name; - e.recursive = recursive; + if (recursive) { + e.subdir_filter = filter; + } else { + e.subdir_filter = 0; + } status = notify_add(pvfs->notify_context, &e, pvfs_notify_callback, f->notify_buffer); |