X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=crypto%2Fcversion.c;h=ea9f25fd16663dc93d9290ea19358db066c4861d;hb=86a2f966d0099d87dc2e2a05a923a26ebc182dea;hp=8d18a95dfc6789230c1677619dc65eb873018a7b;hpb=6b691a5c85ddc4e407e32781841fee5c029506cd;p=openssl.git diff --git a/crypto/cversion.c b/crypto/cversion.c index 8d18a95dfc..ea9f25fd16 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -56,11 +56,11 @@ * [including the GNU Public Licence.] */ -#include -#include #include "cryptlib.h" -#include "crypto.h" -#include "date.h" + +#ifndef NO_WINDOWS_BRAINDEATH +#include "buildinf.h" +#endif const char *SSLeay_version(int t) { @@ -71,8 +71,8 @@ const char *SSLeay_version(int t) #ifdef DATE static char buf[sizeof(DATE)+11]; - sprintf(buf,"built on: %s",DATE); - return(buf); + BIO_snprintf(buf,sizeof buf,"built on: %s",DATE); + return(buf); #else return("built on: date not available"); #endif @@ -82,7 +82,7 @@ const char *SSLeay_version(int t) #ifdef CFLAGS static char buf[sizeof(CFLAGS)+11]; - sprintf(buf,"compiler: %s",CFLAGS); + BIO_snprintf(buf,sizeof buf,"compiler: %s",CFLAGS); return(buf); #else return("compiler: information not available"); @@ -93,10 +93,18 @@ const char *SSLeay_version(int t) #ifdef PLATFORM static char buf[sizeof(PLATFORM)+11]; - sprintf(buf,"platform: %s", PLATFORM); + BIO_snprintf(buf,sizeof buf,"platform: %s", PLATFORM); return(buf); #else return("platform: information not available"); +#endif + } + if (t == SSLEAY_DIR) + { +#ifdef OPENSSLDIR + return "OPENSSLDIR: \"" OPENSSLDIR "\""; +#else + return "OPENSSLDIR: N/A"; #endif } return("not available");