X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fcversion.c;h=e4e6afa69a273a6e3e56df4160bf1cb2df5d8866;hp=b8ab30ec1281309980af6b76e8db7a52c32aee4f;hb=7f89714e64d1dc64b50554a92e2a12596b9934ba;hpb=5f32680329648886701f5b5832239eecf0b38390 diff --git a/crypto/cversion.c b/crypto/cversion.c index b8ab30ec12..e4e6afa69a 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -59,51 +59,50 @@ #include #include #include "cryptlib.h" -#include "crypto.h" +#include #include "date.h" -char *SSLeay_version(t) -int t; +const char *SSLeay_version(int t) { if (t == SSLEAY_VERSION) - return("SSLeay/OpenSSL 0.9.1c 23-Dec-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)+10]; + static char buf[sizeof(PLATFORM)+11]; - sprintf(buf,"Platform:%s",PLATFORM); + sprintf(buf,"platform: %s", PLATFORM); return(buf); #else - return("Platform information not available"); + return("platform: information not available"); #endif } return("not available"); } -unsigned long SSLeay() +unsigned long SSLeay(void) { return(SSLEAY_VERSION_NUMBER); }