# HG changeset patch # User Ruslan Ermilov # Date 1507843946 -10800 # Node ID dc3b3cfd5d23679854f4bd1fc2344d549a81ef5a # Parent 8076ba459f05cbf9ac3501a44f7745d09b482582 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 --- 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; };