diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-10-30 17:50:36 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-10-30 17:50:36 +0000 |
commit | 9dcba819338e9abb45162fb7d534df80390c624e (patch) | |
tree | f098b780de250298ba2fc428c9757bd96b3c9fda /source3/lib | |
parent | 44637311eadab5458793d40fb1ee14dc22956049 (diff) | |
download | samba-9dcba819338e9abb45162fb7d534df80390c624e.tar.gz samba-9dcba819338e9abb45162fb7d534df80390c624e.tar.bz2 samba-9dcba819338e9abb45162fb7d534df80390c624e.zip |
use sys_dlopen instead of dlopen (thanks to jra for noticing)
(This used to be commit 86eb0a25b1df8ca25872f9846a74d0f13a4ad045)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c index 0953f53ad3..f05a68b493 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -32,7 +32,7 @@ NTSTATUS smb_load_module(const char *module_name) * backwards compatibility, there might be symbols in the * plugin referencing to old (removed) functions */ - handle = dlopen(module_name, RTLD_LAZY); + handle = sys_dlopen(module_name, RTLD_LAZY); if(!handle) { DEBUG(0, ("Error loading module '%s': %s\n", module_name, sys_dlerror())); |