comparison src/http/modules/ngx_http_flv_module.c @ 2756:09cab3f8d92e

*) of.test_only to not open file if only stat() is enough *) of.failed to return exact name of failed syscall
author Igor Sysoev <igor@sysoev.ru>
date Mon, 27 Apr 2009 09:55:53 +0000
parents 8e720b7fe6d2
children 975f0558aab3 8152369f7037
comparison
equal deleted inserted replaced
2755:a65976a205a5 2756:09cab3f8d92e
141 break; 141 break;
142 } 142 }
143 143
144 if (rc != NGX_HTTP_NOT_FOUND || clcf->log_not_found) { 144 if (rc != NGX_HTTP_NOT_FOUND || clcf->log_not_found) {
145 ngx_log_error(level, log, of.err, 145 ngx_log_error(level, log, of.err,
146 ngx_open_file_n " \"%s\" failed", path.data); 146 "%s \"%s\" failed", of.failed, path.data);
147 } 147 }
148 148
149 return rc; 149 return rc;
150 } 150 }
151 151