summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-08-29 17:36:44 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-08-29 17:36:44 +0000
commitbd11a63c5342a75c65117c596225555488cd2e2d (patch)
tree115c3d5b03eaaf97a096638753e9837273ae6af9 /source3/auth
parentafc5c6b2a1743a342f620e364b7ef89239cb05aa (diff)
downloadsamba-bd11a63c5342a75c65117c596225555488cd2e2d.tar.gz
samba-bd11a63c5342a75c65117c596225555488cd2e2d.tar.bz2
samba-bd11a63c5342a75c65117c596225555488cd2e2d.zip
We don't need the RTLD_GLOBAL.
(This used to be commit 0d562b81bfd176111a1046560c39b03d986f90ec)
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_builtin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_builtin.c b/source3/auth/auth_builtin.c
index bba1ad98bd..d54a8660b3 100644
--- a/source3/auth/auth_builtin.c
+++ b/source3/auth/auth_builtin.c
@@ -189,7 +189,7 @@ NTSTATUS auth_init_plugin(struct auth_context *auth_context, const char *param,
trim_string(plugin_name, " ", " ");
DEBUG(5, ("Trying to load auth plugin %s\n", plugin_name));
- dl_handle = sys_dlopen(plugin_name, RTLD_NOW | RTLD_GLOBAL );
+ dl_handle = sys_dlopen(plugin_name, RTLD_NOW );
if (!dl_handle) {
DEBUG(0, ("Failed to load auth plugin %s using sys_dlopen (%s)\n", plugin_name, sys_dlerror()));
return NT_STATUS_UNSUCCESSFUL;