From a1be489293644338ac32e8f8e656daae7b803080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 1 May 2019 12:39:00 +0200 Subject: [PATCH] plugin: set lib = RTLD_DEFAULT for builtin plugins --- plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.c b/plugin.c index 3227b06..6ca4719 100644 --- a/plugin.c +++ b/plugin.c @@ -86,7 +86,7 @@ init(void) ((struct plugin){ \ .name = strdup(#plug_name), \ .type = (plug_type), \ - .lib = NULL, \ + .lib = RTLD_DEFAULT, \ })); \ } while (0)