Add missing semicolon to make compiler happy, and switch back
[openssl.git] / apps / openssl.c
index 7bedff48cc73fa1bf72dcc619fafdfec9c7cb80f..1199f894e3b53028e661a0f5e149d22e05d9f02b 100644 (file)
@@ -147,7 +147,9 @@ int main(int Argc, char *Argv[])
        if (p == NULL)
                {
                strcpy(config_name,X509_get_default_cert_area());
+#ifndef VMS
                strcat(config_name,"/");
+#endif
                strcat(config_name,OPENSSL_CONF);
                p=config_name;
                }
@@ -217,7 +219,7 @@ int main(int Argc, char *Argv[])
                        }
                if (ret != 0)
                        BIO_printf(bio_err,"error in %s\n",argv[0]);
-               BIO_flush(bio_err);
+               (void)BIO_flush(bio_err);
                }
        BIO_printf(bio_err,"bad exit\n");
        ret=1;
@@ -234,6 +236,13 @@ end:
        EVP_cleanup();
        ERR_free_strings();
 
+#ifdef LEVITTE_DEBUG
+       {
+       /* Just to make sure I get a memory leak I can see :-) */
+       char *p = Malloc(1024);
+       }
+#endif
+
        CRYPTO_mem_leaks(bio_err);
        if (bio_err != NULL)
                {