Revert "Check on VMS as well"
authorRichard Levitte <levitte@openssl.org>
Fri, 20 Apr 2018 10:22:27 +0000 (12:22 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 25 Apr 2018 09:44:25 +0000 (11:44 +0200)
This reverts commit f6d765988f37c43edb1056ab83165f2569182e9d.

Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6033)

apps/opt.c

index 902563639679fd6298dae6fbd04ae215c29e11d8..a47451c94f6921980b1c68c5ee7efc89326184a8 100644 (file)
@@ -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,