You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2014/01/04 22:44:34 UTC

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

Author: trawick
Date: Sat Jan  4 21:44:34 2014
New Revision: 1555423

URL: http://svn.apache.org/r1555423
Log:
fix typo in 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=1555423&r1=1555422&r2=1555423&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Sat Jan  4 21:44:34 2014
@@ -716,7 +716,7 @@ const char *ssl_cmd_SSLHonorCipherOrder(
     sc->cipher_server_pref = flag?TRUE:FALSE;
     return NULL;
 #else
-    return "SSLHonorCiperOrder unsupported; not implemented by the SSL library";
+    return "SSLHonorCipherOrder unsupported; not implemented by the SSL library";
 #endif
 }