From 77c7875a7b18ccca1ebae1757b9246c9b3b55bf9 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 13 Oct 2017 00:32:26 +0300 Subject: Fixed type of ngx_conf_t.handler_conf. The type should have been changed in c9b243802a17 along with changing ngx_conf_handler_pt. --- src/core/ngx_conf_file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; }; -- cgit