mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
Wrapped dlerror() in the same way as the other dlxxx() calls.
Jeremy.
This commit is contained in:
@ -977,3 +977,12 @@ int sys_dlclose (void *handle)
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
const char *sys_dlerror(void)
|
||||
{
|
||||
#ifdef HAVE_LIBDL
|
||||
return dlerror();
|
||||
#else
|
||||
return NULL;
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user