You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2002/04/02 02:28:23 UTC

cvs commit: apr/dso/netware dso.c

bnicholes    02/04/01 16:28:23

  Modified:    dso/netware dso.c
  Log:
  Make the loaded module local to the address space so that it can resolve
  the symbols correctly
  
  Revision  Changes    Path
  1.3       +1 -1      apr/dso/netware/dso.c
  
  Index: dso.c
  ===================================================================
  RCS file: /home/cvs/apr/dso/netware/dso.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- dso.c	13 Mar 2002 20:39:09 -0000	1.2
  +++ dso.c	2 Apr 2002 00:28:23 -0000	1.3
  @@ -107,7 +107,7 @@
                                          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));