X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fcversion.c;h=8ecfba7b16bac1dac3dd368589a10fbf49b0b402;hp=3933a0c37a1a8ed1f6febbbaa3ecdd2fcfaa12bc;hb=4dc719fc37cb2201c8e211c6a684d71477c20f50;hpb=e778802f53c8d47e96a6e4cbc776eb6e1d4c461a diff --git a/crypto/cversion.c b/crypto/cversion.c index 3933a0c37a..8ecfba7b16 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -59,11 +59,11 @@ #include #include #include "cryptlib.h" -#include "crypto.h" -#include "date.h" +#include -const char *SSLeay_version(t) -int t; +#include "buildinf.h" + +const char *SSLeay_version(int t) { if (t == SSLEAY_VERSION) return OPENSSL_VERSION_TEXT; @@ -73,7 +73,7 @@ int t; static char buf[sizeof(DATE)+11]; sprintf(buf,"built on: %s",DATE); - return(buf); + return(buf); #else return("built on: date not available"); #endif @@ -98,12 +98,20 @@ int t; 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"); } -unsigned long SSLeay() +unsigned long SSLeay(void) { return(SSLEAY_VERSION_NUMBER); }