Revert an untested change that wasn't supposed to go into this ticket
authorKen Raeburn <raeburn@mit.edu>
Tue, 20 Jun 2006 23:59:56 +0000 (23:59 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 20 Jun 2006 23:59:56 +0000 (23:59 +0000)
ticket: 18180

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18181 dc483132-0cff-0310-8789-dd5450dbe970

src/util/support/plugins.c

index 6a40b4a4373d6b626ace621a04d2582b111b6ace..9d025942ecd9907737259ac8d7623219a058ac31 100644 (file)
@@ -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);