diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-18 20:15:09 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-18 20:15:09 +0000 |
commit | 50034b856cd045b8d136f5bc2f3cd61a42d2a104 (patch) | |
tree | fabb58c6ac48b3606a2eb5c80391a9de833694dc /src/http/modules/ngx_http_static_module.c | |
parent | 12fcfab8be58ec3d26cb405982a4dde5dab37d8d (diff) | |
download | nginx-50034b856cd045b8d136f5bc2f3cd61a42d2a104.tar.gz nginx-50034b856cd045b8d136f5bc2f3cd61a42d2a104.zip |
ngx_open_file(name, access, create) > ngx_open_file(name, mode, create, access)
Diffstat (limited to 'src/http/modules/ngx_http_static_module.c')
-rw-r--r-- | src/http/modules/ngx_http_static_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_static_module.c b/src/http/modules/ngx_http_static_module.c index bc150bffa..8f355dcf9 100644 --- a/src/http/modules/ngx_http_static_module.c +++ b/src/http/modules/ngx_http_static_module.c @@ -126,7 +126,7 @@ ngx_http_static_handler(ngx_http_request_t *r) return NGX_HTTP_INTERNAL_SERVER_ERROR; } - fd = ngx_open_file(path.data, NGX_FILE_RDONLY, NGX_FILE_OPEN); + fd = ngx_open_file(path.data, NGX_FILE_RDONLY, NGX_FILE_OPEN, 0); if (fd == NGX_INVALID_FILE) { err = ngx_errno; |