diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2025-10-27 21:16:49 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arutyunyan.roman@gmail.com> | 2025-10-28 12:11:21 +0400 |
| commit | f04e2b7f6e96a0587f091229272a5f060dbf32c0 (patch) | |
| tree | 1203a7df2053aef701e0736bd092e0f09039d93e /src/http | |
| parent | ce30a1cb0ddce88027e760dc91145af6c6e8eef1 (diff) | |
| download | nginx-f04e2b7f6e96a0587f091229272a5f060dbf32c0.tar.gz nginx-f04e2b7f6e96a0587f091229272a5f060dbf32c0.tar.bz2 | |
Fixed compilation warnings on Windows after c93a0c48af87.
Diffstat (limited to 'src/http')
| -rw-r--r-- | src/http/modules/ngx_http_headers_filter_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_headers_filter_module.c b/src/http/modules/ngx_http_headers_filter_module.c index 93177c748..f72044097 100644 --- a/src/http/modules/ngx_http_headers_filter_module.c +++ b/src/http/modules/ngx_http_headers_filter_module.c @@ -688,8 +688,8 @@ ngx_http_headers_create_conf(ngx_conf_t *cf) */ conf->expires = NGX_HTTP_EXPIRES_UNSET; - conf->headers_inherit = NGX_CONF_UNSET; - conf->trailers_inherit = NGX_CONF_UNSET; + conf->headers_inherit = NGX_CONF_UNSET_UINT; + conf->trailers_inherit = NGX_CONF_UNSET_UINT; return conf; } |
