Allow for dso load by explicit path on HP-UX.
authorAndy Polyakov <appro@openssl.org>
Thu, 9 Jun 2005 20:50:44 +0000 (20:50 +0000)
committerAndy Polyakov <appro@openssl.org>
Thu, 9 Jun 2005 20:50:44 +0000 (20:50 +0000)
crypto/dso/dso_dl.c

index fd1c7582608c52c63de1854abf82fbaa9c4c2952..417abb6ea95f598784e843402ff863c22651dba6 100644 (file)
@@ -128,7 +128,8 @@ static int dl_load(DSO *dso)
                DSOerr(DSO_F_DL_LOAD,DSO_R_NO_FILENAME);
                goto err;
                }
-       ptr = shl_load(filename, BIND_IMMEDIATE|DYNAMIC_PATH, 0L);
+       ptr = shl_load(filename, BIND_IMMEDIATE |
+               (dso->flags&DSO_FLAG_NO_NAME_TRANSLATION?0:DYNAMIC_PATH), 0L);
        if(ptr == NULL)
                {
                DSOerr(DSO_F_DL_LOAD,DSO_R_LOAD_FAILED);