]> granicus.if.org Git - apache/commitdiff
* modules/ssl/ssl_engine_config.c (ssl_cmd_SSLInsecureRenegotiation):
authorJoe Orton <jorton@apache.org>
Tue, 9 Feb 2010 12:46:17 +0000 (12:46 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 9 Feb 2010 12:46:17 +0000 (12:46 +0000)
  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

index 81982aa54bae0f276ae9036a8d62ece65e00dd5f..605d621956f79e3c7152db370e305e0f5729a20b 100644 (file)
@@ -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
 }