summaryrefslogtreecommitdiff
path: root/source3/smbd/notify.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-01-31 12:24:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:33 -0500
commit9ee97d2f7d4e3c7e14d32825c5ee23b136ce4e07 (patch)
treef5f0d7bf48b1d609e24b4f2d65effa00d4dd46dc /source3/smbd/notify.c
parent032bd8eea89ce24ab5fdd2eb6095b8416ebde558 (diff)
downloadsamba-9ee97d2f7d4e3c7e14d32825c5ee23b136ce4e07.tar.gz
samba-9ee97d2f7d4e3c7e14d32825c5ee23b136ce4e07.tar.bz2
samba-9ee97d2f7d4e3c7e14d32825c5ee23b136ce4e07.zip
r21077: A step to minimize the diff later: This pulls in unmodified files from Samba4,
not compiled yet. This way the modifications become visible later. ntvfs/common/notify.c -> smbd/notify_internal.c ntvfs/sysdep/inotify.c -> smbd/notify_inotify.c Naturally I had to disable notify again :-) Volker (This used to be commit cdb7d582b7397faa5926bff5783da7fef4209948)
Diffstat (limited to 'source3/smbd/notify.c')
-rw-r--r--source3/smbd/notify.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c
index d920633b0a..4c82b9fca8 100644
--- a/source3/smbd/notify.c
+++ b/source3/smbd/notify.c
@@ -529,11 +529,6 @@ BOOL init_change_notify(void)
{
cnotify = NULL;
-#if HAVE_INOTIFY
- if ((cnotify == NULL) && lp_kernel_change_notify()) {
- cnotify = inotify_notify_init(smbd_event_context());
- }
-#endif
#if HAVE_KERNEL_CHANGE_NOTIFY
if (cnotify == NULL && lp_kernel_change_notify())
cnotify = kernel_notify_init(smbd_event_context());