summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-04-20 12:22:27 +0200
committerRichard Levitte <levitte@openssl.org>2018-04-25 11:44:25 +0200
commitb9a354d08810e95c03dec1f796fdd4069a4001e7 (patch)
treeb26591714552c9039a3fcfe82ab2151ed05dc906 /apps
parent39e32be1ccc527036e0a52c3cf64a40faf28ab9d (diff)
Revert "Check on VMS as well"
This reverts commit f6d765988f37c43edb1056ab83165f2569182e9d. Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6033)
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 9025636396..a47451c94f 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)
+#if !defined(_WIN32) && !defined(__VMS)
char *c;
int oerrno;
#endif
@@ -694,7 +694,7 @@ int opt_next(void)
return -1;
case '>':
/* Output file. */
-#if !defined(_WIN32)
+#if !defined(_WIN32) && !defined(__VMS)
c = OPENSSL_strdup(arg);
if (c == NULL) {
BIO_printf(bio_err,