1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 02:33:12 +02:00

Fixed plugins symbol problem (removed global flag when loading library)

This commit is contained in:
Sebastien Helleu
2006-05-31 20:44:04 +00:00
parent 1ac38c3458
commit 16c7e4b61c
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -752,7 +752,7 @@ plugin_load (char *filename)
if (!full_name)
return NULL;
handle = dlopen (full_name, RTLD_GLOBAL | RTLD_NOW);
handle = dlopen (full_name, RTLD_LOCAL | RTLD_NOW);
if (!handle)
{
irc_display_prefix (NULL, NULL, PREFIX_ERROR);