comparison src/http/modules/ngx_http_ssl_module.c @ 5504:8ed467553f6b

SSL: fixed ssl_verify_depth to take only one argument.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 14 Jan 2014 15:56:40 +0400
parents d049b0ea00a3
children 01e2a5bcdd8f
comparison
equal deleted inserted replaced
5503:d049b0ea00a3 5504:8ed467553f6b
124 NGX_HTTP_SRV_CONF_OFFSET, 124 NGX_HTTP_SRV_CONF_OFFSET,
125 offsetof(ngx_http_ssl_srv_conf_t, verify), 125 offsetof(ngx_http_ssl_srv_conf_t, verify),
126 &ngx_http_ssl_verify }, 126 &ngx_http_ssl_verify },
127 127
128 { ngx_string("ssl_verify_depth"), 128 { ngx_string("ssl_verify_depth"),
129 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_1MORE, 129 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
130 ngx_conf_set_num_slot, 130 ngx_conf_set_num_slot,
131 NGX_HTTP_SRV_CONF_OFFSET, 131 NGX_HTTP_SRV_CONF_OFFSET,
132 offsetof(ngx_http_ssl_srv_conf_t, verify_depth), 132 offsetof(ngx_http_ssl_srv_conf_t, verify_depth),
133 NULL }, 133 NULL },
134 134