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 2013/08/05 18:17:38 UTC

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

Author: trawick
Date: Mon Aug  5 16:17:37 2013
New Revision: 1510588

URL: http://svn.apache.org/r1510588
Log:
fix broken indentation

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=1510588&r1=1510587&r2=1510588&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Mon Aug  5 16:17:37 2013
@@ -609,7 +609,7 @@ const char *ssl_cmd_SSLEngine(cmd_parms 
 
     if (!strcasecmp(arg, "On")) {
         sc->enabled = SSL_ENABLED_TRUE;
-    return NULL;
+        return NULL;
     }
     else if (!strcasecmp(arg, "Off")) {
         sc->enabled = SSL_ENABLED_FALSE;