summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dso/netware/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/netware/dso.c b/dso/netware/dso.c
index 99eabde2c..1c562489b 100644
--- a/dso/netware/dso.c
+++ b/dso/netware/dso.c
@@ -107,7 +107,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
const char *path, apr_pool_t *pool)
{
- void *os_handle = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
+ void *os_handle = dlopen(path, RTLD_NOW | RTLD_LOCAL);
*res_handle = apr_pcalloc(pool, sizeof(**res_handle));