summaryrefslogtreecommitdiffstats
path: root/modules/arch/netware
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2006-09-05 15:08:15 +0200
committerJeff Trawick <trawick@apache.org>2006-09-05 15:08:15 +0200
commit743a621e8d97c218c829cb603a3fbde265406ed8 (patch)
tree4ec6ec328ab5551cfa2e9f2e4b8e0d2a651b9fd4 /modules/arch/netware
parent* Extract stickysession information correctly in the case that it is given (diff)
downloadapache2-743a621e8d97c218c829cb603a3fbde265406ed8.tar.xz
apache2-743a621e8d97c218c829cb603a3fbde265406ed8.zip
Replace ap_get_server_version with ap_get_server_banner() and
ap_get_server_description(). High-level summary: The full server version information is now included in the error log at startup as well as server status reports, irrespective of the setting of the ServerTokens directive. Third-party modules must now use ap_get_server_banner() or ap_get_server_description() in place of ap_get_server_version(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@440337 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/arch/netware')
-rw-r--r--modules/arch/netware/mod_nw_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arch/netware/mod_nw_ssl.c b/modules/arch/netware/mod_nw_ssl.c
index 535fbf1889..e294763a41 100644
--- a/modules/arch/netware/mod_nw_ssl.c
+++ b/modules/arch/netware/mod_nw_ssl.c
@@ -1074,7 +1074,7 @@ char *ssl_var_lookup(apr_pool_t *p, server_rec *s, conn_rec *c, request_rec *r,
/* XXX-Can't get specific SSL info from NetWare */
/*result = ssl_var_lookup_ssl_version(p, var+12);*/
else if (strcEQ(var, "SERVER_SOFTWARE"))
- result = ap_get_server_version();
+ result = ap_get_server_banner();
else if (strcEQ(var, "API_VERSION")) {
result = apr_itoa(p, MODULE_MAGIC_NUMBER);
resdup = FALSE;