summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-04-02 00:28:23 +0000
committerBradley Nicholes <bnicholes@apache.org>2002-04-02 00:28:23 +0000
commit0d059e46182535c55889fbfc83bdc5bddeecde2c (patch)
tree63b09f9059c7fe1280784bdf73bee2576275fba7 /dso
parenta41c7bd3804e1167fce3a68b80b23bab74362bff (diff)
downloadapr-0d059e46182535c55889fbfc83bdc5bddeecde2c.tar.gz
Make the loaded module local to the address space so that it can resolve
the symbols correctly git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63218 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-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));