New options to the -verify program which can be used for chain verification.
[openssl.git] / apps / version.c
index 8d154ea8b3084704359f5701b935b5fb9d4ad534..a567f34094c5e91c5340930639723427aec5370a 100644 (file)
 #include <stdlib.h>
 #include <string.h>
 #include "apps.h"
-#include "evp.h"
-#include "crypto.h"
+#include <openssl/evp.h>
+#include <openssl/crypto.h>
 
 #undef PROG
 #define PROG   version_main
 
-int MAIN(argc, argv)
-int argc;
-char **argv;
+int MAIN(int argc, char **argv)
        {
        int i,ret=0;
        int cflags=0,version=0,date=0,options=0,platform=0;
@@ -107,7 +105,7 @@ char **argv;
        if (platform) printf("%s\n",SSLeay_version(SSLEAY_PLATFORM));
        if (options) 
                {
-               printf("options:");
+               printf("options:  ");
                printf("%s ",BN_options());
 #ifndef NO_MD2
                printf("%s ",MD2_options());
@@ -121,7 +119,7 @@ char **argv;
 #ifndef NO_IDEA
                printf("%s ",idea_options());
 #endif
-#ifndef NO_BLOWFISH
+#ifndef NO_BF
                printf("%s ",BF_options());
 #endif
                printf("\n");