summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1998-12-31 09:36:40 +0000
committerRalf S. Engelschall <rse@openssl.org>1998-12-31 09:36:40 +0000
commit9cb0969f657bcc297430fefb9a51e78c52703121 (patch)
treecabdac8e31b06253239dada3dcb9b8a90726c890 /ssl
parent792a90020f78edb2dfa908eb7283dc3aaa8d25f0 (diff)
Fix version stuff:
1. The already released version was 0.9.1c and not 0.9.1b 2. The next release should be 0.9.2 and not 0.9.1d, because first the changes are already too large, second we should avoid any more 0.9.1x confusions and third, the Apache version semantics of VERSION.REVISION.PATCHLEVEL for the version string is reasonable (and here .2 is already just a patchlevel and not major change). tVS: ----------------------------------------------------------------------
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s23_lib.c2
-rw-r--r--ssl/s2_lib.c2
-rw-r--r--ssl/s3_lib.c2
-rw-r--r--ssl/ssl_lib.c2
-rw-r--r--ssl/t1_lib.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/ssl/s23_lib.c b/ssl/s23_lib.c
index b6def8219a..37e98abf79 100644
--- a/ssl/s23_lib.c
+++ b/ssl/s23_lib.c
@@ -78,7 +78,7 @@ static int ssl23_put_cipher_by_char();
static SSL_CIPHER *ssl23_get_cipher_by_char();
#endif
-char *SSL23_version_str="SSLv2/3 compatibility part of OpenSSL 0.9.1c 23-Dec-1998";
+char *SSL23_version_str="SSLv2/3 compatibility part of OpenSSL 0.9.2 31-Dec-1998";
static SSL_METHOD SSLv23_data= {
TLS1_VERSION,
diff --git a/ssl/s2_lib.c b/ssl/s2_lib.c
index d11673ee90..51f686128f 100644
--- a/ssl/s2_lib.c
+++ b/ssl/s2_lib.c
@@ -67,7 +67,7 @@ static long ssl2_default_timeout(void );
static long ssl2_default_timeout();
#endif
-char *ssl2_version_str="SSLv2 part of OpenSSL 0.9.1c 23-Dec-1998";
+char *ssl2_version_str="SSLv2 part of OpenSSL 0.9.2 31-Dec-1998";
#define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index a6cda3c8f0..a523207a9f 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -60,7 +60,7 @@
#include "objects.h"
#include "ssl_locl.h"
-char *ssl3_version_str="SSLv3 part of OpenSSL 0.9.1c 23-Dec-1998";
+char *ssl3_version_str="SSLv3 part of OpenSSL 0.9.2 31-Dec-1998";
#define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers)/sizeof(SSL_CIPHER))
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index edd623afc6..a4bbe53fa0 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -61,7 +61,7 @@
#include "lhash.h"
#include "ssl_locl.h"
-char *SSL_version_str="OpenSSL 0.9.1c 23-Dec-1998";
+char *SSL_version_str="OpenSSL 0.9.2 31-Dec-1998";
static STACK *ssl_meth=NULL;
static STACK *ssl_ctx_meth=NULL;
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 89f6d13230..a1f1a48693 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -60,7 +60,7 @@
#include "objects.h"
#include "ssl_locl.h"
-char *tls1_version_str="TLSv1 part of OpenSSL 0.9.1c 23-Dec-1998";
+char *tls1_version_str="TLSv1 part of OpenSSL 0.9.2 31-Dec-1998";
#ifndef NO_PROTO
static long tls1_default_timeout(void);