From 2f5fadb80126dcfabf9006ae9e2426e56d64c568 Mon Sep 17 00:00:00 2001
From: Joe Orton <jorton@apache.org>
Date: Tue, 9 Feb 2010 12:46:17 +0000
Subject: [PATCH] * 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
---
 modules/ssl/ssl_engine_config.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/ssl/ssl_engine_config.c b/modules/ssl/ssl_engine_config.c
index 81982aa54b..605d621956 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
 }
 
-- 
2.40.0