comparison src/core/ngx_connection.c @ 3429:9ecd253fcc90 stable-0.7

merge r3148, r3152, r3161: error processing fixes: *) fail if file size was changed *) low default connection errors level from alert to error *) low ENAMETOOLONG logging level
author Igor Sysoev <igor@sysoev.ru>
date Mon, 01 Feb 2010 14:31:26 +0000
parents 87da6664fb49
children a7491af45540
comparison
equal deleted inserted replaced
3428:62f5fb57bbc1 3429:9ecd253fcc90
915 case NGX_ERROR_IGNORE_ECONNRESET: 915 case NGX_ERROR_IGNORE_ECONNRESET:
916 case NGX_ERROR_INFO: 916 case NGX_ERROR_INFO:
917 level = NGX_LOG_INFO; 917 level = NGX_LOG_INFO;
918 break; 918 break;
919 919
920 case NGX_ERROR_ERR: 920 default:
921 level = NGX_LOG_ERR; 921 level = NGX_LOG_ERR;
922 break;
923
924 default:
925 level = NGX_LOG_ALERT;
926 } 922 }
927 923
928 } else { 924 } else {
929 level = NGX_LOG_ALERT; 925 level = NGX_LOG_ALERT;
930 } 926 }