From: Stefan Fritsch Date: Sun, 4 Dec 2011 09:05:07 +0000 (+0000) Subject: Point to mod_socache_* in the SSLSessionCache error message X-Git-Tag: 2.5.0-alpha~7728 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5d691aa03550ecadb749ed64167fe960b7e3fc8;p=thirdparty%2Fapache%2Fhttpd.git Point to mod_socache_* in the SSLSessionCache error message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1210080 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_config.c b/modules/ssl/ssl_engine_config.c index 41de7ee57ae..5ad9cc8163d 100644 --- a/modules/ssl/ssl_engine_config.c +++ b/modules/ssl/ssl_engine_config.c @@ -1150,7 +1150,9 @@ const char *ssl_cmd_SSLSessionCache(cmd_parms *cmd, all_names = apr_array_pstrcat(cmd->pool, name_list, ','); err = apr_psprintf(cmd->pool, "'%s' session cache not supported " - "(known names: %s)", name, all_names); + "(known names: %s). Maybe you need to load the " + "appropriate socache module (mod_socache_%s?).", + name, all_names, name); } }