diff options
author | Kozlov Dmitry <dima@server> | 2010-12-29 17:18:56 +0300 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-12-29 17:18:56 +0300 |
commit | 7206898657c84b6131103d127751e030513a1abc (patch) | |
tree | 39aafcce1a27fc1dba45c87496921c8a08565bc8 /accel-pptpd/triton | |
parent | 9048cd1f660eeaa3e620490ec6acb2bbbfa7bc28 (diff) | |
download | accel-ppp-7206898657c84b6131103d127751e030513a1abc.tar.gz accel-ppp-7206898657c84b6131103d127751e030513a1abc.zip |
radius: changed api
Diffstat (limited to 'accel-pptpd/triton')
-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; |