changeset 7133:dc3b3cfd5d23

Fixed type of ngx_conf_t.handler_conf. The type should have been changed in c9b243802a17 along with changing ngx_conf_handler_pt.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 13 Oct 2017 00:32:26 +0300
parents 8076ba459f05
children d87f29d764ce
files src/core/ngx_conf_file.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 };