comparison src/core/ngx_conf_file.c @ 300:502b03d9d2a3

nginx-0.0.3-2004-03-31-00:31:58 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 30 Mar 2004 20:31:58 +0000
parents ee394e997c77
children 11ff50a35d6d
comparison
equal deleted inserted replaced
299:46b7eeb8a116 300:502b03d9d2a3
569 { 569 {
570 return ngx_conf_set_flag_slot(cf, cmd, *(void **)conf); 570 return ngx_conf_set_flag_slot(cf, cmd, *(void **)conf);
571 } 571 }
572 572
573 573
574 char *ngx_conf_set_core_num_slot(ngx_conf_t *cf, ngx_command_t *cmd,
575 void *conf)
576 {
577 return ngx_conf_set_num_slot(cf, cmd, *(void **)conf);
578 }
579
580
574 char *ngx_conf_set_core_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, 581 char *ngx_conf_set_core_str_slot(ngx_conf_t *cf, ngx_command_t *cmd,
575 void *conf) 582 void *conf)
576 { 583 {
577 return ngx_conf_set_str_slot(cf, cmd, *(void **)conf); 584 return ngx_conf_set_str_slot(cf, cmd, *(void **)conf);
578 } 585 }