Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 /src/core/ngx_conf_file.h
parent5fee8f76b529e38ec0ba6e7e81e26be3e3e85548 (diff)
Fixed type of ngx_conf_t.handler_conf.
The type should have been changed in c9b243802a17 along with changing ngx_conf_handler_pt.
Diffstat (limited to 'src/core/ngx_conf_file.h')
-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;
};