comparison src/core/ngx_conf_file.c @ 173:4fb2a2cff023

nginx-0.0.1-2003-11-04-20:09:19 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 04 Nov 2003 17:09:19 +0000
parents caa57ddf6d77
children c0552e5ab567
comparison
equal deleted inserted replaced
172:caa57ddf6d77 173:4fb2a2cff023
809 if (*np >= bounds->low) { 809 if (*np >= bounds->low) {
810 return NGX_CONF_OK; 810 return NGX_CONF_OK;
811 } 811 }
812 812
813 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 813 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
814 "value must be more than %d", bounds->low); 814 "value must be equal or more than %d", bounds->low);
815 815
816 return NGX_CONF_ERROR; 816 return NGX_CONF_ERROR;
817 } 817 }
818 818
819 if (*np >= bounds->low && *np <= bounds->high) { 819 if (*np >= bounds->low && *np <= bounds->high) {