From 05af5c367d5ed2e738811d206e916f5109e0ee01 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 6 Mar 2008 07:19:46 +0100 Subject: Respect FAMChanged -- attempt to fix bug 5307 Thanks to Ricardo Santos (This used to be commit 8ef57a34ebf24e577ba7bca57a5456c1f78a3659) --- source3/modules/vfs_notify_fam.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/modules/vfs_notify_fam.c') diff --git a/source3/modules/vfs_notify_fam.c b/source3/modules/vfs_notify_fam.c index 30cb0aa17c..aacc52e68c 100644 --- a/source3/modules/vfs_notify_fam.c +++ b/source3/modules/vfs_notify_fam.c @@ -155,6 +155,9 @@ static void fam_handler(struct event_context *event_ctx, fam_event.filename)); switch (fam_event.code) { + case FAMChanged: + ne.action = NOTIFY_ACTION_MODIFIED; + break; case FAMCreated: ne.action = NOTIFY_ACTION_ADDED; break; -- cgit