comparison src/http/ngx_http_core_module.c @ 599:53f5f04a64b8 NGINX_0_8_45

nginx 0.8.45 *) Feature: ngx_http_xslt_filter improvements. Thanks to Laurence Rowe. *) Bugfix: SSI response might be truncated after include with wait="yes"; the bug had appeared in 0.7.25. Thanks to Maxim Dounin. *) Bugfix: the "listen" directive did not support the "setfib=0" parameter.
author Igor Sysoev <http://sysoev.ru>
date Tue, 13 Jul 2010 00:00:00 +0400
parents 016632f0fb18
children cde3626b2d0d
comparison
equal deleted inserted replaced
598:565a8b8fdad5 599:53f5f04a64b8
3438 3438
3439 #if (NGX_HAVE_SETFIB) 3439 #if (NGX_HAVE_SETFIB)
3440 if (ngx_strncmp(value[n].data, "setfib=", 7) == 0) { 3440 if (ngx_strncmp(value[n].data, "setfib=", 7) == 0) {
3441 lsopt.setfib = ngx_atoi(value[n].data + 7, value[n].len - 7); 3441 lsopt.setfib = ngx_atoi(value[n].data + 7, value[n].len - 7);
3442 3442
3443 if (lsopt.setfib == NGX_ERROR || lsopt.setfib == 0) { 3443 if (lsopt.setfib == NGX_ERROR) {
3444 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 3444 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
3445 "invalid setfib \"%V\"", &value[n]); 3445 "invalid setfib \"%V\"", &value[n]);
3446 return NGX_CONF_ERROR; 3446 return NGX_CONF_ERROR;
3447 } 3447 }
3448 3448