aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2017-10-13 00:32:26 +0300
committerRuslan Ermilov <ru@nginx.com>2017-10-13 00:32:26 +0300
commit77c7875a7b18ccca1ebae1757b9246c9b3b55bf9 (patch)
treeddba33d3be9a28a924c6039751b20695e1e47b5c
parent5fee8f76b529e38ec0ba6e7e81e26be3e3e85548 (diff)
downloadnginx-77c7875a7b18ccca1ebae1757b9246c9b3b55bf9.tar.gz
nginx-77c7875a7b18ccca1ebae1757b9246c9b3b55bf9.zip
Fixed type of ngx_conf_t.handler_conf.
The type should have been changed in c9b243802a17 along with changing ngx_conf_handler_pt.
-rw-r--r--src/core/ngx_conf_file.h2
1 files changed, 1 insertions, 1 deletions
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;
};