aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_conf_file.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-01-18 20:15:09 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-01-18 20:15:09 +0000
commit50034b856cd045b8d136f5bc2f3cd61a42d2a104 (patch)
treefabb58c6ac48b3606a2eb5c80391a9de833694dc /src/core/ngx_conf_file.c
parent12fcfab8be58ec3d26cb405982a4dde5dab37d8d (diff)
downloadnginx-50034b856cd045b8d136f5bc2f3cd61a42d2a104.tar.gz
nginx-50034b856cd045b8d136f5bc2f3cd61a42d2a104.zip
ngx_open_file(name, access, create) > ngx_open_file(name, mode, create, access)
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r--src/core/ngx_conf_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c
index baa43c912..9e4b30a08 100644
--- a/src/core/ngx_conf_file.c
+++ b/src/core/ngx_conf_file.c
@@ -76,7 +76,7 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename)
/* open configuration file */
- fd = ngx_open_file(filename->data, NGX_FILE_RDONLY, NGX_FILE_OPEN);
+ fd = ngx_open_file(filename->data, NGX_FILE_RDONLY, NGX_FILE_OPEN, 0);
if (fd == NGX_INVALID_FILE) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
ngx_open_file_n " \"%s\" failed",