[nginx] Fixed type of ngx_conf_t.handler_conf.

Ruslan Ermilov ru at nginx.com
Thu Oct 12 21:32:45 UTC 2017


details:   http://hg.nginx.org/nginx/rev/dc3b3cfd5d23
branches:  
changeset: 7133:dc3b3cfd5d23
user:      Ruslan Ermilov <ru at nginx.com>
date:      Fri Oct 13 00:32:26 2017 +0300
description:
Fixed type of ngx_conf_t.handler_conf.

The type should have been changed in c9b243802a17 along with
changing ngx_conf_handler_pt.

diffstat:

 src/core/ngx_conf_file.h |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 8076ba459f05 -r dc3b3cfd5d23 src/core/ngx_conf_file.h
--- a/src/core/ngx_conf_file.h	Wed Oct 11 15:43:50 2017 -0700
+++ b/src/core/ngx_conf_file.h	Fri Oct 13 00:32:26 2017 +0300
@@ -128,7 +128,7 @@ struct ngx_conf_s {
     ngx_uint_t            cmd_type;
 
     ngx_conf_handler_pt   handler;
-    char                 *handler_conf;
+    void                 *handler_conf;
 };
 
 


More information about the nginx-devel mailing list