From: Ken Raeburn Date: Tue, 20 Jun 2006 23:59:56 +0000 (+0000) Subject: Revert an untested change that wasn't supposed to go into this ticket X-Git-Tag: krb5-1.6-alpha1~283 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0cdd9da907b70010468374b37d61229601b16927;p=krb5.git Revert an untested change that wasn't supposed to go into this ticket ticket: 18180 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18181 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/support/plugins.c b/src/util/support/plugins.c index 6a40b4a43..9d025942e 100644 --- a/src/util/support/plugins.c +++ b/src/util/support/plugins.c @@ -97,7 +97,7 @@ krb5int_open_plugin (const char *filepath, struct plugin_file_handle **h, struct void *handle = NULL; if (!err) { - handle = dlopen(filepath, RTLD_NOW /*| RTLD_GLOBAL*/); + handle = dlopen(filepath, RTLD_NOW | RTLD_GLOBAL); if (handle == NULL) { const char *e = dlerror(); Tprintf ("dlopen(%s): %s\n", filepath, e);