Fix const declarations.
[openssl.git] / crypto / cversion.c
index 4e823be52f9c1db3352a9e0ad0f225a4cc429c96..3933a0c37a1a8ed1f6febbbaa3ecdd2fcfaa12bc 100644 (file)
 #include "crypto.h"
 #include "date.h"
 
-char *SSLeay_version(t)
+const char *SSLeay_version(t)
 int t;
        {
        if (t == SSLEAY_VERSION)
-               return("SSLeay 0.9.0b 29-Jun-1998");
+               return OPENSSL_VERSION_TEXT;
        if (t == SSLEAY_BUILT_ON)
                {
 #ifdef DATE
-               static char buf[sizeof(DATE)+10];
+               static char buf[sizeof(DATE)+11];
 
-               sprintf(buf,"built on %s",DATE);
+               sprintf(buf,"built on: %s",DATE);
                return(buf);
 #else
-               return("build date not available");
+               return("built on: date not available");
 #endif
                }
        if (t == SSLEAY_CFLAGS)
                {
 #ifdef CFLAGS
-               static char buf[sizeof(CFLAGS)+10];
+               static char buf[sizeof(CFLAGS)+11];
 
-               sprintf(buf,"C flags:%s",CFLAGS);
+               sprintf(buf,"compiler: %s",CFLAGS);
                return(buf);
 #else
-               return("C flags not available");
+               return("compiler: information not available");
+#endif
+               }
+       if (t == SSLEAY_PLATFORM)
+               {
+#ifdef PLATFORM
+               static char buf[sizeof(PLATFORM)+11];
+
+               sprintf(buf,"platform: %s", PLATFORM);
+               return(buf);
+#else
+               return("platform: information not available");
 #endif
                }
        return("not available");