summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-01-29 08:58:26 +0100
committerRichard Levitte <levitte@openssl.org>2018-02-28 18:48:04 +0100
commitf6d765988f37c43edb1056ab83165f2569182e9d (patch)
tree3fef9e8c98898aebc76cc923687223febf4e6272 /apps
parent215a6730f1eaf53b01a4eb10d75bd09fd74f70cc (diff)
Check on VMS as well
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4008)
Diffstat (limited to 'apps')
-rw-r--r--apps/opt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/opt.c b/apps/opt.c
index a47451c94f..9025636396 100644
--- a/apps/opt.c
+++ b/apps/opt.c
@@ -620,7 +620,7 @@ int opt_next(void)
unsigned long ulval;
ossl_intmax_t imval;
ossl_uintmax_t umval;
-#if !defined(_WIN32) && !defined(__VMS)
+#if !defined(_WIN32)
char *c;
int oerrno;
#endif
@@ -694,7 +694,7 @@ int opt_next(void)
return -1;
case '>':
/* Output file. */
-#if !defined(_WIN32) && !defined(__VMS)
+#if !defined(_WIN32)
c = OPENSSL_strdup(arg);
if (c == NULL) {
BIO_printf(bio_err,