projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0eb8e00
)
Allow for dso load by explicit path on HP-UX.
author
Andy Polyakov
<appro@openssl.org>
Thu, 9 Jun 2005 20:47:41 +0000
(20:47 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Thu, 9 Jun 2005 20:47:41 +0000
(20:47 +0000)
crypto/dso/dso_dl.c
patch
|
blob
|
history
diff --git
a/crypto/dso/dso_dl.c
b/crypto/dso/dso_dl.c
index 82daa0b85e4222ea5341720828db65b37edd518e..0c6e7c9f8699a614a3764d2ca76c97d28168d32e 100644
(file)
--- a/
crypto/dso/dso_dl.c
+++ b/
crypto/dso/dso_dl.c
@@
-126,7
+126,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);