--- embedaddon/sudo/compat/dlopen.c 2012/05/29 12:26:49 1.1.1.2 +++ embedaddon/sudo/compat/dlopen.c 2013/07/22 10:46:11 1.1.1.3 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Todd C. Miller + * Copyright (c) 2010, 2012-2013 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -16,6 +16,8 @@ #include +#ifndef HAVE_DLOPEN + #include #include @@ -51,7 +53,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 */ @@ -150,5 +152,5 @@ sudo_dlerror(void) { return strerror(errno); } - #endif /* HAVE_SHL_LOAD */ +#endif /* HAVE_DLOPEN */