From: Richard Levitte Date: Fri, 16 Nov 2001 13:13:09 +0000 (+0000) Subject: On VMS, the norm is still that symbols are uppercased, so for now it's better X-Git-Tag: OpenSSL_0_9_6c~29 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=54b293ec3c9bcdc9b6d308142e82aff5ba5d4f48;p=oweals%2Fopenssl.git 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 --- diff --git a/crypto/dso/dso_vms.c b/crypto/dso/dso_vms.c index ab48b63eb7..d8bf26b6d8 100644 --- a/crypto/dso/dso_vms.c +++ b/crypto/dso/dso_vms.c @@ -259,8 +259,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;