diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-01 14:16:23 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-01 14:16:23 +0000 |
commit | 4af2f3a02d9fc3ae1305a58001e075b9a01591d9 (patch) | |
tree | f5970a6ca30ca3f086580d8b65accc62a1f5f700 /src | |
parent | 7509710c33b64e86b8828f167c666faa2f3f4e7f (diff) | |
download | weechat-4af2f3a02d9fc3ae1305a58001e075b9a01591d9.zip |
Revert back for plugin loaded, use of GLOBAL instead of LOCAL (problems with Perl DynaLoader)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/plugins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/plugins.c b/src/plugins/plugins.c index d9cc4a9d2..9242cffb3 100644 --- a/src/plugins/plugins.c +++ b/src/plugins/plugins.c @@ -752,7 +752,7 @@ plugin_load (char *filename) if (!full_name) return NULL; - handle = dlopen (full_name, RTLD_LOCAL | RTLD_NOW); + handle = dlopen (full_name, RTLD_GLOBAL | RTLD_NOW); if (!handle) { irc_display_prefix (NULL, NULL, PREFIX_ERROR); |