Generate errors when public/private key check is done.
[openssl.git] / crypto / cversion.c
index 4e823be52f9c1db3352a9e0ad0f225a4cc429c96..121bd1dcb5b72593da5762debfbc56b10e2b1b21 100644 (file)
@@ -66,7 +66,7 @@ char *SSLeay_version(t)
 int t;
        {
        if (t == SSLEAY_VERSION)
-               return("SSLeay 0.9.0b 29-Jun-1998");
+               return("OpenSSL 0.9.2 31-Dec-1998");
        if (t == SSLEAY_BUILT_ON)
                {
 #ifdef DATE
@@ -87,6 +87,17 @@ int t;
                return(buf);
 #else
                return("C flags not available");
+#endif
+               }
+       if (t == SSLEAY_PLATFORM)
+               {
+#ifdef PLATFORM
+               static char buf[sizeof(PLATFORM)+10];
+
+               sprintf(buf,"Platform:%s",PLATFORM);
+               return(buf);
+#else
+               return("Platform information not available");
 #endif
                }
        return("not available");