2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-30 05:48:18 +00:00

Pass BIND_VERBOSE to shl_load()

This commit is contained in:
Todd C. Miller 2013-03-18 15:15:13 -04:00
parent eef31be22a
commit 7109e46deb

View File

@ -51,7 +51,7 @@
void *
sudo_dlopen(const char *path, int mode)
{
int flags = DYNAMIC_PATH;
int flags = DYNAMIC_PATH | BIND_VERBOSE;
if (mode == 0)
mode = RTLD_LAZY; /* default behavior */