From ed053586a6d90a48be93d26f21ca2e39e059a0ea Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 22 Mar 2002 00:59:23 +0000 Subject: [PATCH] the mod_ssl provided with Apache >= 2.0 no longer has an independent version number git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94111 13f79535-47bb-0310-9956-ffa450edef68 --- mod_ssl.h | 2 -- ssl_engine_pphrase.c | 2 +- ssl_engine_vars.c | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/mod_ssl.h b/mod_ssl.h index 89c0a58223a..7b7ed2887ea 100644 --- a/mod_ssl.h +++ b/mod_ssl.h @@ -64,8 +64,6 @@ #ifndef __MOD_SSL_H__ #define __MOD_SSL_H__ -#define MOD_SSL_VERSION "3.0a0" - /* * Optionally enable the experimental stuff, but allow the user to * override the decision which experimental parts are included by using diff --git a/ssl_engine_pphrase.c b/ssl_engine_pphrase.c index 8d6706545b1..5982133e763 100644 --- a/ssl_engine_pphrase.c +++ b/ssl_engine_pphrase.c @@ -703,7 +703,7 @@ int ssl_pphrase_Handle_CB(char *buf, int bufsize, int verify, void *srv) */ if (*pnPassPhraseDialog == 1) { apr_file_printf(writetty, "%s mod_ssl/%s (Pass Phrase Dialog)\n", - AP_SERVER_BASEVERSION, MOD_SSL_VERSION); + AP_SERVER_BASEVERSION, AP_SERVER_BASEREVISION); apr_file_printf(writetty, "Some of your private key files are encrypted for security reasons.\n"); apr_file_printf(writetty, "In order to read them you have to provide us with the pass phrases.\n"); } diff --git a/ssl_engine_vars.c b/ssl_engine_vars.c index 1671ec116c4..c1a41279080 100644 --- a/ssl_engine_vars.c +++ b/ssl_engine_vars.c @@ -601,7 +601,7 @@ static char *ssl_var_lookup_ssl_version(apr_pool_t *p, char *var) #endif } else if (strEQ(var, "INTERFACE")) { - result = apr_psprintf(p, "mod_ssl/%s", MOD_SSL_VERSION); + result = apr_psprintf(p, "mod_ssl/%s", AP_SERVER_BASEREVISION); } else if (strEQ(var, "LIBRARY")) { result = apr_pstrdup(p, SSL_LIBRARY_TEXT); -- 2.47.2