diff options
author | Andy Polyakov <appro@openssl.org> | 2005-06-09 22:52:24 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2005-06-09 22:52:24 +0200 |
commit | 79e1dd65ab0e0e852174a45f93ce7dbefae43f09 (patch) | |
tree | 6c333fcfbacdbe74e94f0a7e6c29643a28dabddf /crypto/dso/dso_dl.c | |
parent | When the return type of the function is int, it's better to return an (diff) | |
download | openssl-79e1dd65ab0e0e852174a45f93ce7dbefae43f09.tar.xz openssl-79e1dd65ab0e0e852174a45f93ce7dbefae43f09.zip |
Allow for dso load by explicit path on HP-UX.
Diffstat (limited to 'crypto/dso/dso_dl.c')
-rw-r--r-- | crypto/dso/dso_dl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/dso/dso_dl.c b/crypto/dso/dso_dl.c index 2de01b09e1..4d599246c8 100644 --- a/crypto/dso/dso_dl.c +++ b/crypto/dso/dso_dl.c @@ -130,7 +130,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); |