Skip to content

Commit

Permalink
libfisdef.h and LIB do not exist on older VMS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
levitte committed Apr 3, 2001
1 parent 0da945b commit e56b54a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/dso/dso_vms.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
#ifdef OPENSSL_SYS_VMS
#pragma message disable DOLLARID
#include <lib$routines.h>
#include <libfisdef.h>
#include <stsdef.h>
#include <descrip.h>
#include <starlet.h>
Expand Down Expand Up @@ -280,7 +279,8 @@ void vms_bind_sym(DSO *dso, const char *symname, void **sym)
{
DSO_VMS_INTERNAL *ptr;
int status;
int flags = LIB$M_FIS_MIXEDCASE;
int flags = (1<<4); /* LIB$M_FIS_MIXEDCASE, but this symbol isn't
defined in VMS older than 7.0 or so */
struct dsc$descriptor_s symname_dsc;
*sym = NULL;

Expand Down

0 comments on commit e56b54a

Please sign in to comment.