comparison src/core/ngx_conf_file.h @ 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 6d3a60a909c8
children b7a7c02aea3a
comparison
equal deleted inserted replaced
7132:8076ba459f05 7133:dc3b3cfd5d23
126 void *ctx; 126 void *ctx;
127 ngx_uint_t module_type; 127 ngx_uint_t module_type;
128 ngx_uint_t cmd_type; 128 ngx_uint_t cmd_type;
129 129
130 ngx_conf_handler_pt handler; 130 ngx_conf_handler_pt handler;
131 char *handler_conf; 131 void *handler_conf;
132 }; 132 };
133 133
134 134
135 typedef char *(*ngx_conf_post_handler_pt) (ngx_conf_t *cf, 135 typedef char *(*ngx_conf_post_handler_pt) (ngx_conf_t *cf,
136 void *data, void *conf); 136 void *data, void *conf);