diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-10-16 13:31:00 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-10-16 13:31:00 +0000 |
commit | ad1e123bfae5dcfd44ff82d12e59b4af58b2f8cf (patch) | |
tree | a8cd6e09137e1752ba7d00003222f1fd4139805a /src/http/ngx_http_core_module.c | |
parent | 84ab8f2bc8200b091d87e893cb12c2f3a27e4306 (diff) | |
download | nginx-ad1e123bfae5dcfd44ff82d12e59b4af58b2f8cf.tar.gz nginx-ad1e123bfae5dcfd44ff82d12e59b4af58b2f8cf.zip |
NGX_OPEN_FILE_DIRECTIO_OFF
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 1d8a55222..dd76b99e3 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -3470,7 +3470,7 @@ ngx_http_core_directio(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) value = cf->args->elts; if (ngx_strcmp(value[1].data, "off") == 0) { - clcf->directio = NGX_MAX_OFF_T_VALUE; + clcf->directio = NGX_OPEN_FILE_DIRECTIO_OFF; return NGX_CONF_OK; } |