summaryrefslogtreecommitdiff
path: root/source4/ntvfs/sysdep/sys_notify.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-11-02 19:32:50 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-11-02 19:32:50 +0100
commita9dbd73b2f1400347bf9db7b6da2020fb5c11494 (patch)
treeb13b7ff7f9889a84577b355da4afeea860393bf4 /source4/ntvfs/sysdep/sys_notify.c
parent1e053df95c478dd5ca5fceab822700af49cc6510 (diff)
downloadsamba-a9dbd73b2f1400347bf9db7b6da2020fb5c11494.tar.gz
samba-a9dbd73b2f1400347bf9db7b6da2020fb5c11494.tar.bz2
samba-a9dbd73b2f1400347bf9db7b6da2020fb5c11494.zip
Remove last instance of global_loadparm.
Diffstat (limited to 'source4/ntvfs/sysdep/sys_notify.c')
-rw-r--r--source4/ntvfs/sysdep/sys_notify.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/ntvfs/sysdep/sys_notify.c b/source4/ntvfs/sysdep/sys_notify.c
index d84979e44c..a27386bb13 100644
--- a/source4/ntvfs/sysdep/sys_notify.c
+++ b/source4/ntvfs/sysdep/sys_notify.c
@@ -71,6 +71,17 @@ _PUBLIC_ struct sys_notify_context *sys_notify_context_create(struct share_confi
}
for (i=0;i<num_backends;i++) {
+ char *enable_opt_name;
+ bool enabled;
+
+ enable_opt_name = talloc_asprintf(mem_ctx, "notify:%s",
+ backends[i].name);
+ enabled = share_bool_option(scfg, enable_opt_name, true);
+ talloc_free(enable_opt_name);
+
+ if (!enabled)
+ continue;
+
if (strcasecmp(backends[i].name, bname) == 0) {
bname = backends[i].name;
break;