summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-10-24 19:07:12 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-10-28 13:10:28 +0200
commitb7b798e15b7be2d57e20c14cca2f908b301ed894 (patch)
treeb268885e167cadc811a7f9cc14b9cd1dcf0f79b9 /source4/ntvfs
parentce0ccc2a2ea820cd5d30ffd082d898fcb57431e6 (diff)
downloadsamba-b7b798e15b7be2d57e20c14cca2f908b301ed894.tar.gz
samba-b7b798e15b7be2d57e20c14cca2f908b301ed894.tar.bz2
samba-b7b798e15b7be2d57e20c14cca2f908b301ed894.zip
lib/util Rename load_samba_modules -> samba_modules_load
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 034536d694..fa4167e03d 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 = load_samba_modules(NULL, "ntvfs");
+ shared_init = samba_modules_load(NULL, "ntvfs");
samba_init_module_fns_run(static_init);
samba_init_module_fns_run(shared_init);
diff --git a/source4/ntvfs/posix/pvfs_acl.c b/source4/ntvfs/posix/pvfs_acl.c
index 3f9626ed8a..2bff4be304 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 = load_samba_modules(NULL, "pvfs_acl");
+ shared_init = samba_modules_load(NULL, "pvfs_acl");
samba_init_module_fns_run(static_init);
samba_init_module_fns_run(shared_init);