You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2010/02/26 22:13:27 UTC

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

Author: jorton
Date: Fri Feb 26 21:13:26 2010
New Revision: 916817

URL: http://svn.apache.org/viewvc?rev=916817&view=rev
Log:
* modules/ssl/ssl_engine_config.c (ssl_cmd_SSLInsecureRenegotiation):
  Tweak wording as suggested by trawick.

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=916817&r1=916816&r2=916817&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Fri Feb 26 21:13:26 2010
@@ -637,8 +637,8 @@
     sc->insecure_reneg = flag?TRUE:FALSE;
     return NULL;
 #else
-    return "Secure renegotation is not supported by the SSL library; "
-        "the SSLInsecureRenegotiation directive is not available";
+    return "The SSLInsecureRenegotiation directive is not available "
+        "with this SSL library";
 #endif
 }