aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-10-26 12:00:37 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-10-26 12:00:37 +0000
commit8ffea50797e5bbb34d5d04f1f2e15b7afc6ae81f (patch)
treed56bd9658d0066d5061fae46f5df8841aa21ccea /src
parentbaf8e409bacae99139c46f85d2227acb9301e485 (diff)
downloadnginx-8ffea50797e5bbb34d5d04f1f2e15b7afc6ae81f.tar.gz
nginx-8ffea50797e5bbb34d5d04f1f2e15b7afc6ae81f.zip
fix r3211
Diffstat (limited to 'src')
-rw-r--r--src/core/nginx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c
index 226208773..7387aa1ba 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -239,8 +239,12 @@ main(int argc, char *const *argv)
#ifdef NGX_COMPILER
ngx_log_stderr(0, "built by " NGX_COMPILER);
#endif
+#if (NGX_SSL)
#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
ngx_log_stderr(0, "TLS SNI support enabled");
+#else
+ ngx_log_stderr(0, "TLS SNI support disabled");
+#endif
#endif
ngx_log_stderr(0, "configure arguments:" NGX_CONFIGURE);
}