From: Ruslan Ermilov Date: Thu, 12 Oct 2017 21:32:26 +0000 (+0300) Subject: Fixed type of ngx_conf_t.handler_conf. X-Git-Tag: release-1.13.7~9 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=77c7875a7b18ccca1ebae1757b9246c9b3b55bf9;p=nginx.git Fixed type of ngx_conf_t.handler_conf. The type should have been changed in c9b243802a17 along with changing ngx_conf_handler_pt. --- diff --git a/src/core/ngx_conf_file.h b/src/core/ngx_conf_file.h index 213611faf..9cd580643 100644 --- a/src/core/ngx_conf_file.h +++ b/src/core/ngx_conf_file.h @@ -128,7 +128,7 @@ struct ngx_conf_s { ngx_uint_t cmd_type; ngx_conf_handler_pt handler; - char *handler_conf; + void *handler_conf; };