summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-01-02 23:41:54 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-01-02 23:41:54 +0000
commit018b2a63769e5df95120534eb6c949a33c901627 (patch)
tree6241898533727827d41c5f5c53631c60e4f95563 /src
parentebf2bbc31027f579a7bf6ba9664da897779fefc5 (diff)
downloadnginx-018b2a63769e5df95120534eb6c949a33c901627.tar.gz
nginx-018b2a63769e5df95120534eb6c949a33c901627.tar.bz2
style fix
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_ssl_module.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_ssl_module.c b/src/http/modules/ngx_http_ssl_module.c
index 39e3eab54..2fa421ec0 100644
--- a/src/http/modules/ngx_http_ssl_module.c
+++ b/src/http/modules/ngx_http_ssl_module.c
@@ -343,7 +343,8 @@ ngx_http_ssl_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
cln->data = &conf->ssl;
if (ngx_ssl_certificate(cf, &conf->ssl, &conf->certificate,
- &conf->certificate_key) != NGX_OK)
+ &conf->certificate_key)
+ != NGX_OK)
{
return NGX_CONF_ERROR;
}
@@ -359,7 +360,8 @@ ngx_http_ssl_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
if (conf->verify) {
if (ngx_ssl_client_certificate(cf, &conf->ssl,
- &conf->client_certificate, conf->verify_depth)
+ &conf->client_certificate,
+ conf->verify_depth)
!= NGX_OK)
{
return NGX_CONF_ERROR;