diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-15 19:28:10 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-15 19:28:10 +0000 |
commit | ee0da9ad5312301a1ccd009e043155b3a1e8c372 (patch) | |
tree | 19da07c971fc812dd495697a123053befa169886 /src/http/modules/ngx_http_ssl_module.c | |
parent | 0f50f090224d2ef526b35b103205b37250872d97 (diff) | |
download | nginx-ee0da9ad5312301a1ccd009e043155b3a1e8c372.tar.gz nginx-ee0da9ad5312301a1ccd009e043155b3a1e8c372.zip |
fix building by MSVC8
Diffstat (limited to 'src/http/modules/ngx_http_ssl_module.c')
-rw-r--r-- | src/http/modules/ngx_http_ssl_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_ssl_module.c b/src/http/modules/ngx_http_ssl_module.c index 48d40e599..91dad999e 100644 --- a/src/http/modules/ngx_http_ssl_module.c +++ b/src/http/modules/ngx_http_ssl_module.c @@ -320,8 +320,8 @@ ngx_http_ssl_create_srv_conf(ngx_conf_t *cf) sscf->enable = NGX_CONF_UNSET; sscf->prefer_server_ciphers = NGX_CONF_UNSET; - sscf->verify = NGX_CONF_UNSET; - sscf->verify_depth = NGX_CONF_UNSET; + sscf->verify = NGX_CONF_UNSET_UINT; + sscf->verify_depth = NGX_CONF_UNSET_UINT; sscf->builtin_session_cache = NGX_CONF_UNSET; sscf->session_timeout = NGX_CONF_UNSET; |