]> git.kaiwu.me - nginx.git/commitdiff
Fixed type of ngx_conf_t.handler_conf.
authorRuslan Ermilov <ru@nginx.com>
Thu, 12 Oct 2017 21:32:26 +0000 (00:32 +0300)
committerRuslan Ermilov <ru@nginx.com>
Thu, 12 Oct 2017 21:32:26 +0000 (00:32 +0300)
The type should have been changed in c9b243802a17 along with
changing ngx_conf_handler_pt.

src/core/ngx_conf_file.h

index 213611faf12bddee4b5bead21c1c1bf756668a6c..9cd580643698b3f3439f01935ab488847e0e0b04 100644 (file)
@@ -128,7 +128,7 @@ struct ngx_conf_s {
     ngx_uint_t            cmd_type;
 
     ngx_conf_handler_pt   handler;
-    char                 *handler_conf;
+    void                 *handler_conf;
 };