comparison src/http/modules/ngx_http_static_module.c @ 3595:8944c3e318ab stable-0.7

merge r3498, r3499: opening files fixes: *) use non-blocking open() not to hang on FIFO files, etc. *) do not log misleading errno in "not a regular file" error
author Igor Sysoev <igor@sysoev.ru>
date Mon, 07 Jun 2010 12:08:44 +0000
parents 09cab3f8d92e
children 8152369f7037
comparison
equal deleted inserted replaced
3594:8a5106c2a377 3595:8944c3e318ab
186 } 186 }
187 187
188 #if !(NGX_WIN32) /* the not regular files are probably Unix specific */ 188 #if !(NGX_WIN32) /* the not regular files are probably Unix specific */
189 189
190 if (!of.is_file) { 190 if (!of.is_file) {
191 ngx_log_error(NGX_LOG_CRIT, log, ngx_errno, 191 ngx_log_error(NGX_LOG_CRIT, log, 0,
192 "\"%s\" is not a regular file", path.data); 192 "\"%s\" is not a regular file", path.data);
193 193
194 return NGX_HTTP_NOT_FOUND; 194 return NGX_HTTP_NOT_FOUND;
195 } 195 }
196 196