diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-27 09:55:53 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-27 09:55:53 +0000 |
commit | f1cc457d7f562a7c8e7ff9ba28fc143bd175a7dc (patch) | |
tree | f3c4ae29d70a5dfd1f42dfe10174a7cbcbb9bdeb /src/http/modules/ngx_http_flv_module.c | |
parent | 0e60e4f73a62bf168dcc0ece770dafa27de35207 (diff) | |
download | nginx-f1cc457d7f562a7c8e7ff9ba28fc143bd175a7dc.tar.gz nginx-f1cc457d7f562a7c8e7ff9ba28fc143bd175a7dc.zip |
*) of.test_only to not open file if only stat() is enough
*) of.failed to return exact name of failed syscall
Diffstat (limited to 'src/http/modules/ngx_http_flv_module.c')
-rw-r--r-- | src/http/modules/ngx_http_flv_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_flv_module.c b/src/http/modules/ngx_http_flv_module.c index b7c18cf57..2afeb2809 100644 --- a/src/http/modules/ngx_http_flv_module.c +++ b/src/http/modules/ngx_http_flv_module.c @@ -143,7 +143,7 @@ ngx_http_flv_handler(ngx_http_request_t *r) if (rc != NGX_HTTP_NOT_FOUND || clcf->log_not_found) { ngx_log_error(level, log, of.err, - ngx_open_file_n " \"%s\" failed", path.data); + "%s \"%s\" failed", of.failed, path.data); } return rc; |