comparison src/core/ngx_conf_file.c @ 4593:834049edae24

Fixed grammar in error messages.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 12 Apr 2012 19:35:41 +0000
parents 41f640a693de
children 01a21ee8f8bb
comparison
equal deleted inserted replaced
4592:ab1649495d30 4593:834049edae24
1479 if (*np >= bounds->low) { 1479 if (*np >= bounds->low) {
1480 return NGX_CONF_OK; 1480 return NGX_CONF_OK;
1481 } 1481 }
1482 1482
1483 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1483 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1484 "value must be equal or more than %i", bounds->low); 1484 "value must be equal to or greater than %i",
1485 bounds->low);
1485 1486
1486 return NGX_CONF_ERROR; 1487 return NGX_CONF_ERROR;
1487 } 1488 }
1488 1489
1489 if (*np >= bounds->low && *np <= bounds->high) { 1490 if (*np >= bounds->low && *np <= bounds->high) {