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:
76c4336
)
On VMS, the norm is still that symbols are uppercased, so for now it's better
author
Richard Levitte
<levitte@openssl.org>
Fri, 16 Nov 2001 13:12:19 +0000
(13:12 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Fri, 16 Nov 2001 13:12:19 +0000
(13:12 +0000)
to trust that norm. I might implement a control for this later on
crypto/dso/dso_vms.c
patch
|
blob
|
history
diff --git
a/crypto/dso/dso_vms.c
b/crypto/dso/dso_vms.c
index 6ae116be8f541e8bb6864be829b4cb83dcdaeb6a..1674619d17b4f7c963a846cc369e6af538be3ba5 100644
(file)
--- 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;