aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-11-16 13:12:19 +0000
committerRichard Levitte <levitte@openssl.org>2001-11-16 13:12:19 +0000
commit9d93ce246cad0fcc66f5cdaa822b2926ffa256b5 (patch)
tree9b6ba2930827ecc16736c7c566bcf75182ecd212 /crypto/dso
parent76c4336c4336d6165ffbb45ccb93a19092ef05cc (diff)
downloadopenssl-9d93ce246cad0fcc66f5cdaa822b2926ffa256b5.tar.gz
On VMS, the norm is still that symbols are uppercased, so for now it's better
to trust that norm. I might implement a control for this later on
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_vms.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/dso/dso_vms.c b/crypto/dso/dso_vms.c
index 6ae116be8f..1674619d17 100644
--- a/crypto/dso/dso_vms.c
+++ b/crypto/dso/dso_vms.c
@@ -279,8 +279,12 @@ void vms_bind_sym(DSO *dso, const char *symname, void **sym)
{
DSO_VMS_INTERNAL *ptr;
int status;
+#if 0
int flags = (1<<4); /* LIB$M_FIS_MIXEDCASE, but this symbol isn't
defined in VMS older than 7.0 or so */
+#else
+ int flags = 0;
+#endif
struct dsc$descriptor_s symname_dsc;
*sym = NULL;