diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-03-30 20:31:58 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-30 20:31:58 +0000 |
commit | a741f8d0216d95a7ee0fbb8a24947de8842900c0 (patch) | |
tree | 39b3665a5cb0f7780a139eeea918316342fd92af /src/core/ngx_conf_file.c | |
parent | 6707ba90729c615ffa5bf5ea81b8d32c3d8bd6e4 (diff) | |
download | nginx-a741f8d0216d95a7ee0fbb8a24947de8842900c0.tar.gz nginx-a741f8d0216d95a7ee0fbb8a24947de8842900c0.zip |
nginx-0.0.3-2004-03-31-00:31:58 import
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r-- | src/core/ngx_conf_file.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 63918673c..8f409eae5 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -571,6 +571,13 @@ char *ngx_conf_set_core_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd, } +char *ngx_conf_set_core_num_slot(ngx_conf_t *cf, ngx_command_t *cmd, + void *conf) +{ + return ngx_conf_set_num_slot(cf, cmd, *(void **)conf); +} + + char *ngx_conf_set_core_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) { |