1
0
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:
Jelmer Vernooij 0001-01-01 00:00:00 +00:00
parent 6945e89e2d
commit 86eb0a25b1

View File

@ -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()));