# 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 -r 8076ba459f05 -r dc3b3cfd5d23 src/core/ngx_conf_file.h --- a/src/core/ngx_conf_file.h Wed Oct 11 15:43:50 2017 -0700 +++ b/src/core/ngx_conf_file.h Fri Oct 13 00:32:26 2017 +0300 @@ -128,7 +128,7 @@ ngx_uint_t cmd_type; ngx_conf_handler_pt handler; - char *handler_conf; + void *handler_conf; };