You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/12/04 10:05:07 UTC

svn commit: r1210080 - /httpd/httpd/trunk/modules/ssl/ssl_engine_config.c

Author: sf
Date: Sun Dec  4 09:05:07 2011
New Revision: 1210080

URL: http://svn.apache.org/viewvc?rev=1210080&view=rev
Log:
Point to mod_socache_* in the SSLSessionCache error message

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_config.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_config.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_config.c?rev=1210080&r1=1210079&r2=1210080&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Sun Dec  4 09:05:07 2011
@@ -1150,7 +1150,9 @@ const char *ssl_cmd_SSLSessionCache(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);
         }
     }