VMS: update the properties of symbol search
authorRichard Levitte <levitte@openssl.org>
Wed, 23 Mar 2016 18:30:31 +0000 (19:30 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 23 Mar 2016 18:58:12 +0000 (19:58 +0100)
In this OpenSSL version, we deliver engines with lower case symbol
names.  The DSO symbol finder must be updated to allow for mixed case
symbols or it won't fine them.

Reviewed-by: Rich Salz <rsalz@openssl.org>
crypto/dso/dso_vms.c

index 5b8dc9198d7981bd3814ab6729cfec90af226b13..654e766764fd0dc64b79f1493136fef812762019 100644 (file)
@@ -64,6 +64,7 @@
 # include <errno.h>
 # include <rms.h>
 # include <lib$routines.h>
+# include <libfisdef.h>
 # include <stsdef.h>
 # include <descrip.h>
 # include <starlet.h>
@@ -313,11 +314,10 @@ 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 */
+# ifdef LIB$M_FIS_MIXEDCASE
+    int flags = LIB$M_FIS_MIXEDCASE;
 # else
-    int flags = 0;
+    int flags = (1 << 4);
 # endif
     struct dsc$descriptor_s symname_dsc;