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_auth_basic_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_auth_basic_module.c')
-rw-r--r-- | src/http/modules/ngx_http_auth_basic_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_auth_basic_module.c b/src/http/modules/ngx_http_auth_basic_module.c index d021ef83e..19bfe996e 100644 --- a/src/http/modules/ngx_http_auth_basic_module.c +++ b/src/http/modules/ngx_http_auth_basic_module.c @@ -133,7 +133,7 @@ ngx_http_auth_basic_handler(ngx_http_request_t *r) return NGX_HTTP_INTERNAL_SERVER_ERROR; } - fd = ngx_open_file(alcf->user_file.data, NGX_FILE_RDONLY, NGX_FILE_OPEN); + fd = ngx_open_file(alcf->user_file.data, NGX_FILE_RDONLY, NGX_FILE_OPEN, 0); if (fd == NGX_INVALID_FILE) { ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno, |