]> git.ipfire.org Git - thirdparty/apache/httpd.git/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/modules/ssl@94111 13f79535-47bb-0310-9956-ffa450edef68

mod_ssl.h
ssl_engine_pphrase.c
ssl_engine_vars.c

index 89c0a58223a7d44b947d87cb999248f46c7a5d57..7b7ed2887ea93709f512f2e04098f455cee53b33 100644 (file)
--- 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
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);