From 9dcba819338e9abb45162fb7d534df80390c624e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 30 Oct 2002 17:50:36 +0000 Subject: use sys_dlopen instead of dlopen (thanks to jra for noticing) (This used to be commit 86eb0a25b1df8ca25872f9846a74d0f13a4ad045) --- source3/lib/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') 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())); -- cgit