diff options
author | Ruslan Ermilov <ru@nginx.com> | 2017-08-01 14:28:33 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2017-08-01 14:28:33 +0300 |
commit | b992f7259ba4763178f9d394b320bcc5de88818b (patch) | |
tree | 141e63c424d98f3e1e29702dbf1302c09b8cc90a /src/http/modules/ngx_http_ssl_module.c | |
parent | 83be971bc78c17fdaf254ea54d5166d4829f8b3e (diff) | |
download | nginx-b992f7259ba4763178f9d394b320bcc5de88818b.tar.gz nginx-b992f7259ba4763178f9d394b320bcc5de88818b.zip |
Variables: macros for null variables.
No functional changes.
Diffstat (limited to 'src/http/modules/ngx_http_ssl_module.c')
-rw-r--r-- | src/http/modules/ngx_http_ssl_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_ssl_module.c b/src/http/modules/ngx_http_ssl_module.c index b466e5d96..4370275be 100644 --- a/src/http/modules/ngx_http_ssl_module.c +++ b/src/http/modules/ngx_http_ssl_module.c @@ -329,7 +329,7 @@ static ngx_http_variable_t ngx_http_ssl_vars[] = { { ngx_string("ssl_client_v_remain"), NULL, ngx_http_ssl_variable, (uintptr_t) ngx_ssl_get_client_v_remain, NGX_HTTP_VAR_CHANGEABLE, 0 }, - { ngx_null_string, NULL, NULL, 0, 0, 0 } + ngx_http_null_variable }; |