You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2007/12/29 16:03:22 UTC

svn commit: r607425 - /httpd/httpd/trunk/modules/ssl/ssl_engine_init.c

Author: fuankg
Date: Sat Dec 29 07:03:21 2007
New Revision: 607425

URL: http://svn.apache.org/viewvc?rev=607425&view=rev
Log:
added empty line after var declaration.

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_init.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_init.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_init.c?rev=607425&r1=607424&r2=607425&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_init.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_init.c Sat Dec 29 07:03:21 2007
@@ -208,6 +208,7 @@
 {
     const char *servername =
                 SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
+
     if (servername)
         return ssl_set_vhost_ctx(ssl, servername) ? 
                 SSL_TLSEXT_ERR_OK : SSL_TLSEXT_ERR_ALERT_FATAL;