Make `openssl version' output lines consistent.
[openssl.git] / crypto / cversion.c
index d36496dcc5d71e826ae64fa0419b56d453669d10..d6e452a7de7bc4d294eb9f684c227269102e8569 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/cversion.c */
-/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  * This package is an SSL implementation written
@@ -66,27 +66,38 @@ char *SSLeay_version(t)
 int t;
        {
        if (t == SSLEAY_VERSION)
-               return("SSLeay 0.8.1b 29-Jun-1998");
+               return("OpenSSL 0.9.2 31-Dec-1998");
        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");