diff options
Diffstat (limited to 'src/core/ngx_conf_file.h')
-rw-r--r-- | src/core/ngx_conf_file.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/ngx_conf_file.h b/src/core/ngx_conf_file.h index 3624d5df0..b3f1d6304 100644 --- a/src/core/ngx_conf_file.h +++ b/src/core/ngx_conf_file.h @@ -24,8 +24,9 @@ #define NGX_CONF_TAKE2 0x00000004 #define NGX_CONF_ARGS_NUMBER 0x0000ffff #define NGX_CONF_ANY 0x00010000 -#define NGX_CONF_BLOCK 0x00020000 -#define NGX_CONF_FLAG 0x00040000 +#define NGX_CONF_ANY1 0x00020000 +#define NGX_CONF_BLOCK 0x00040000 +#define NGX_CONF_FLAG 0x00080000 #define NGX_MAIN_CONF 0x01000000 @@ -83,7 +84,7 @@ typedef struct { typedef char *(*ngx_conf_handler_pt)(ngx_conf_t *cf, - ngx_command_t *dummy, char *conf); + ngx_command_t *dummy, void *conf); struct ngx_conf_s { |