From 084aa41f444e8e6161336d9c84eabf90f648d702 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 26 Oct 2009 12:00:37 +0000 Subject: [PATCH] fix r3211 --- src/core/nginx.c | 4 ++++ 1 file changed, 4 insertions(+) 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); }