summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-10-25 10:34:13 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-10-28 13:10:28 +0200
commit7f8f7159afbd9cfce4181eeb31a5c575c14d5f81 (patch)
tree6122ee2174d86f0c73a1342b073523deb0ec691c /source4/ntvfs
parentb256799eaf829fcb7d6e1d88de4478f77df8ff73 (diff)
downloadsamba-7f8f7159afbd9cfce4181eeb31a5c575c14d5f81.tar.gz
samba-7f8f7159afbd9cfce4181eeb31a5c575c14d5f81.tar.bz2
samba-7f8f7159afbd9cfce4181eeb31a5c575c14d5f81.zip
lib/util Rename samba_modules_load -> samba_module_init_fns_for_subsystem
This is to provide a cleaner namespace in the public samba plugin functions. Andrew Bartlett
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/ntvfs_base.c2
-rw-r--r--source4/ntvfs/posix/pvfs_acl.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntvfs/ntvfs_base.c b/source4/ntvfs/ntvfs_base.c
index f34ea7b7dd..fbf7d12ec3 100644
--- a/source4/ntvfs/ntvfs_base.c
+++ b/source4/ntvfs/ntvfs_base.c
@@ -236,7 +236,7 @@ NTSTATUS ntvfs_init(struct loadparm_context *lp_ctx)
if (initialized) return NT_STATUS_OK;
initialized = true;
- shared_init = samba_modules_load(NULL, "ntvfs");
+ shared_init = samba_module_init_fns_for_subsystem(NULL, "ntvfs");
samba_module_init_fns_run(static_init);
samba_module_init_fns_run(shared_init);
diff --git a/source4/ntvfs/posix/pvfs_acl.c b/source4/ntvfs/posix/pvfs_acl.c
index 546a8fc01a..d040537001 100644
--- a/source4/ntvfs/posix/pvfs_acl.c
+++ b/source4/ntvfs/posix/pvfs_acl.c
@@ -93,7 +93,7 @@ NTSTATUS pvfs_acl_init(void)
if (initialized) return NT_STATUS_OK;
initialized = true;
- shared_init = samba_modules_load(NULL, "pvfs_acl");
+ shared_init = samba_module_init_fns_for_subsystem(NULL, "pvfs_acl");
samba_module_init_fns_run(static_init);
samba_module_init_fns_run(shared_init);