diff options
Diffstat (limited to 'accel-pptpd/triton/loader.c')
-rw-r--r-- | accel-pptpd/triton/loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pptpd/triton/loader.c b/accel-pptpd/triton/loader.c index b6c1914e..2a2a2e2f 100644 --- a/accel-pptpd/triton/loader.c +++ b/accel-pptpd/triton/loader.c @@ -48,7 +48,7 @@ int load_modules(const char *name) } } - if (!dlopen(fname, RTLD_NOW | RTLD_GLOBAL)) { + if (!dlopen(fname, RTLD_LAZY | RTLD_GLOBAL)) { triton_log_error("loader: failed to load '%s': %s\n", opt->name, dlerror()); _free(fname); return -1; |