X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fcversion.c;h=297f8843f58586803ea450af2e1be417186bbbc4;hb=6e7af77268c2b83acdcd18bb7098cf1194abfb17;hp=3933a0c37a1a8ed1f6febbbaa3ecdd2fcfaa12bc;hpb=e778802f53c8d47e96a6e4cbc776eb6e1d4c461a;p=oweals%2Fopenssl.git diff --git a/crypto/cversion.c b/crypto/cversion.c index 3933a0c37a..297f8843f5 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 @@ -103,7 +103,7 @@ int t; return("not available"); } -unsigned long SSLeay() +unsigned long SSLeay(void) { return(SSLEAY_VERSION_NUMBER); }