Extend all the loading functions to take an engine pointer, a pass
[openssl.git] / apps / pkcs12.c
index 8b1586faf5a6ad97fb7441020b600b2e2502f442..90abbb84d2a35c409b4039a25a9575b81f8b3505 100644 (file)
@@ -70,7 +70,7 @@
 
 #define PROG pkcs12_main
 
-EVP_CIPHER *enc;
+const EVP_CIPHER *enc;
 
 
 #define NOKEYS         0x1
@@ -375,7 +375,7 @@ int MAIN(int argc, char **argv)
 
     if (!outfile) {
        out = BIO_new_fp(stdout, BIO_NOCLOSE);
-#ifdef VMS
+#ifdef OPENSSL_SYS_VMS
        {
            BIO *tmpbio = BIO_new(BIO_f_linebuffer());
            out = BIO_push(tmpbio, out);