From 7d7d2cbcb02206f3393681f2bce198e11e2e185b Mon Sep 17 00:00:00 2001 From: Ulf Möller Date: Thu, 13 May 1999 11:37:32 +0000 Subject: VMS support. Submitted by: Richard Levitte --- crypto/conf/conf.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crypto/conf/conf.c') diff --git a/crypto/conf/conf.c b/crypto/conf/conf.c index 28f08b3c39..177e76a175 100644 --- a/crypto/conf/conf.c +++ b/crypto/conf/conf.c @@ -105,7 +105,11 @@ LHASH *CONF_load(LHASH *h, char *file, long *line) goto err; } +#ifdef VMS + in=fopen(file,"r"); +#else in=fopen(file,"rb"); +#endif if (in == NULL) { SYSerr(SYS_F_FOPEN,get_last_sys_error()); -- cgit v1.2.3