]> granicus.if.org Git - apache/commitdiff
the mod_ssl provided with Apache >= 2.0 no longer has an independent
authorJeff Trawick <trawick@apache.org>
Fri, 22 Mar 2002 00:59:23 +0000 (00:59 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 22 Mar 2002 00:59:23 +0000 (00:59 +0000)
version number

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94111 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/ssl/mod_ssl.h
modules/ssl/ssl_engine_pphrase.c
modules/ssl/ssl_engine_vars.c

diff --git a/STATUS b/STATUS
index e0fdf97177bd88c5d12ba9234c38087ed1055428..84757d9bbf43b3d749d294d49670a5ae19611584 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                              -*-text-*-
-Last modified at [$Date: 2002/03/21 20:38:02 $]
+Last modified at [$Date: 2002/03/22 00:59:23 $]
 
 Release:
 
@@ -92,11 +92,6 @@ FINAL RELEASE SHOWSTOPPERS:
     * Address popular PRs
         * Win32 doesn't install as service correctly [9863, 9914, 9961]
 
-    * Don't forget to reversion mod_ssl, which is currently listed
-      as mod_ssl/3.0a0.
-        Jeff posted a patch 20020321.  He'll commit if he doesn't see
-        any concerns expressed.
-
 CURRENT VOTES:
 
     * Should we always build binaries statically unless otherwise
index 89c0a58223a7d44b947d87cb999248f46c7a5d57..7b7ed2887ea93709f512f2e04098f455cee53b33 100644 (file)
@@ -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
index 8d6706545b1aa212999eda1e033fdeda51ae7bb7..5982133e76352bb759cf860ebe2260d7df897ca0 100644 (file)
@@ -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");
         }
index 1671ec116c4700b71e9293256a21d1a4a5e175de..c1a41279080830c088b3f0ca30393ee3ac932f02 100644 (file)
@@ -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);