summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-10-02 18:57:39 +0200
committerRichard Levitte <levitte@openssl.org>2018-10-03 22:15:15 +0200
commit18958cefd82449daf3c589b74a074f0c88159d47 (patch)
treed3cfcdc39af9b9f7f2d42f4d231fd7762822f74f
parent1b39bc9bcf2c8a0eb1047529feb91ed00c8c6ff7 (diff)
Remove SSL_version_str
I was never exported in our shared libraries and no one noticed, and we don't seem to use it ourselves, so clean it away. In all likelyhood, this is a remain from the 90's, when it was in fashion to litter library modules with these kinds of strings. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/7340)
-rw-r--r--include/openssl/ssl.h2
-rw-r--r--ssl/ssl_lib.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 0a18a43544..ffe158388d 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -2392,8 +2392,6 @@ int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx,
int SSL_SESSION_set1_ticket_appdata(SSL_SESSION *ss, const void *data, size_t len);
int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len);
-extern const char SSL_version_str[];
-
typedef unsigned int (*DTLS_timer_cb)(SSL *s, unsigned int timer_us);
void DTLS_set_timer_cb(SSL *s, DTLS_timer_cb cb);
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index ec5b1554f7..846b856af4 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -23,8 +23,6 @@
#include "internal/cryptlib.h"
#include "internal/refcount.h"
-const char SSL_version_str[] = OPENSSL_VERSION_TEXT;
-
static int ssl_undefined_function_1(SSL *ssl, SSL3_RECORD *r, size_t s, int t)
{
(void)r;