1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r21091: Fix the build without inotify

This commit is contained in:
Volker Lendecke 2007-01-31 14:36:50 +00:00 committed by Gerald (Jerry) Carter
parent 985dde8ed0
commit 686345b7ed

View File

@ -610,6 +610,10 @@ NTSTATUS sys_notify_watch(struct sys_notify_context *ctx,
struct notify_event *ev),
void *private_data, void *handle)
{
#ifdef HAVE_INOTIFY
return inotify_watch(ctx, e, callback, private_data, handle);
#else
return NT_STATUS_OK;
#endif
}