From: Joe Orton Date: Tue, 9 Feb 2010 12:46:17 +0000 (+0000) Subject: * modules/ssl/ssl_engine_config.c (ssl_cmd_SSLInsecureRenegotiation): X-Git-Tag: 2.3.6~491 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f5fadb80126dcfabf9006ae9e2426e56d64c568;p=thirdparty%2Fapache%2Fhttpd.git * modules/ssl/ssl_engine_config.c (ssl_cmd_SSLInsecureRenegotiation): Tweak error wording for when the directive is not supported. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@908015 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_config.c b/modules/ssl/ssl_engine_config.c index 81982aa54ba..605d621956f 100644 --- a/modules/ssl/ssl_engine_config.c +++ b/modules/ssl/ssl_engine_config.c @@ -637,7 +637,8 @@ const char *ssl_cmd_SSLInsecureRenegotiation(cmd_parms *cmd, void *dcfg, int fla sc->insecure_reneg = flag?TRUE:FALSE; return NULL; #else - return "SSLInsecureRenegotiation is not supported by the SSL library"; + return "Secure renegotation is not supported by the SSL library; " + "the SSLInsecureRenegotiation directive is not available"; #endif }