diff src/http/modules/ngx_http_index_module.c @ 3160:a7637c2c1157

low ENAMETOOLONG logging level
author Igor Sysoev <igor@sysoev.ru>
date Fri, 25 Sep 2009 09:13:08 +0000
parents c7d57b539248
children 975f0558aab3 8152369f7037
line wrap: on
line diff
--- a/src/http/modules/ngx_http_index_module.c
+++ b/src/http/modules/ngx_http_index_module.c
@@ -222,7 +222,10 @@ ngx_http_index_handler(ngx_http_request_
                 return NGX_HTTP_INTERNAL_SERVER_ERROR;
             }
 
-            if (of.err == NGX_ENOTDIR || of.err == NGX_EACCES) {
+            if (of.err == NGX_ENOTDIR
+                || of.err == NGX_ENAMETOOLONG
+                || of.err == NGX_EACCES)
+            {
                 return ngx_http_index_error(r, clcf, path.data, of.err);
             }