summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2025-10-27 21:16:49 +0400
committerRoman Arutyunyan <arutyunyan.roman@gmail.com>2025-10-28 12:11:21 +0400
commitf04e2b7f6e96a0587f091229272a5f060dbf32c0 (patch)
tree1203a7df2053aef701e0736bd092e0f09039d93e /src/http/modules
parentce30a1cb0ddce88027e760dc91145af6c6e8eef1 (diff)
downloadnginx-f04e2b7f6e96a0587f091229272a5f060dbf32c0.tar.gz
nginx-f04e2b7f6e96a0587f091229272a5f060dbf32c0.tar.bz2
Fixed compilation warnings on Windows after c93a0c48af87.
Diffstat (limited to 'src/http/modules')
-rw-r--r--src/http/modules/ngx_http_headers_filter_module.c4
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;
}