From 7109e46debe2bc72918e9479afdb7384924a0d95 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 18 Mar 2013 15:15:13 -0400 Subject: [PATCH] Pass BIND_VERBOSE to shl_load() --- compat/dlopen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/dlopen.c b/compat/dlopen.c index f5f62feb3..fe73c01d2 100644 --- a/compat/dlopen.c +++ b/compat/dlopen.c @@ -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 */