mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
use sys_dlopen instead of dlopen (thanks to jra for noticing)
This commit is contained in:
parent
6945e89e2d
commit
86eb0a25b1
@ -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()));
|
||||
|
Loading…
Reference in New Issue
Block a user