summaryrefslogtreecommitdiffstats
path: root/src/util/support
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2006-06-20 23:59:56 +0000
committerKen Raeburn <raeburn@mit.edu>2006-06-20 23:59:56 +0000
commit0cdd9da907b70010468374b37d61229601b16927 (patch)
treefc5a5fa0a15f8f7f54680d7ca3c521ac821b4615 /src/util/support
parentf5f7c801239586dfa38519dac0b46c2b11d0f0d9 (diff)
downloadkrb5-0cdd9da907b70010468374b37d61229601b16927.tar.gz
krb5-0cdd9da907b70010468374b37d61229601b16927.tar.xz
krb5-0cdd9da907b70010468374b37d61229601b16927.zip
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
Diffstat (limited to 'src/util/support')
-rw-r--r--src/util/support/plugins.c2
1 files changed, 1 insertions, 1 deletions
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);