X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fcversion.c;h=121bd1dcb5b72593da5762debfbc56b10e2b1b21;hb=0491b70983f90db2ec2e95951f87ba2f0c2a0ce7;hp=d36496dcc5d71e826ae64fa0419b56d453669d10;hpb=b7896b3cb86d80206af14a14d69b0717786f2729;p=oweals%2Fopenssl.git diff --git a/crypto/cversion.c b/crypto/cversion.c index d36496dcc5..121bd1dcb5 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -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,7 +66,7 @@ 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 @@ -87,6 +87,17 @@ int t; return(buf); #else return("C flags not available"); +#endif + } + if (t == SSLEAY_PLATFORM) + { +#ifdef PLATFORM + static char buf[sizeof(PLATFORM)+10]; + + sprintf(buf,"Platform:%s",PLATFORM); + return(buf); +#else + return("Platform information not available"); #endif } return("not available");