Fixed type of ngx_conf_t.handler_conf.

The type should have been changed in c9b243802a17 along with
changing ngx_conf_handler_pt.
This commit is contained in:
Ruslan Ermilov 2017-10-13 00:32:26 +03:00
parent 5fee8f76b5
commit 77c7875a7b

View File

@ -128,7 +128,7 @@ struct ngx_conf_s {
ngx_uint_t cmd_type;
ngx_conf_handler_pt handler;
char *handler_conf;
void *handler_conf;
};