aboutsummaryrefslogtreecommitdiff
path: root/src/core/nginx.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-09-15 15:24:21 +0000
committerIgor Sysoev <igor@sysoev.ru>2010-09-15 15:24:21 +0000
commit8c70e67f7b1044c9dc5df598cdb48ec18aa0853f (patch)
tree0e244c2f570e6f469cdd41e55cefeb3ad58b26cc /src/core/nginx.c
parent9a62648f7bece8e192085330a6409db7e9580ffa (diff)
downloadnginx-8c70e67f7b1044c9dc5df598cdb48ec18aa0853f.tar.gz
nginx-8c70e67f7b1044c9dc5df598cdb48ec18aa0853f.zip
worker_rlimit_core should be off_t
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r--src/core/nginx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c
index 62cea7557..0f19371e6 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -110,7 +110,7 @@ static ngx_command_t ngx_core_commands[] = {
{ ngx_string("worker_rlimit_core"),
NGX_MAIN_CONF|NGX_DIRECT_CONF|NGX_CONF_TAKE1,
- ngx_conf_set_size_slot,
+ ngx_conf_set_off_slot,
0,
offsetof(ngx_core_conf_t, rlimit_core),
NULL },
@@ -941,7 +941,7 @@ ngx_core_module_create_conf(ngx_cycle_t *cycle)
ccf->debug_points = NGX_CONF_UNSET;
ccf->rlimit_nofile = NGX_CONF_UNSET;
- ccf->rlimit_core = NGX_CONF_UNSET_SIZE;
+ ccf->rlimit_core = NGX_CONF_UNSET;
ccf->rlimit_sigpending = NGX_CONF_UNSET;
ccf->user = (ngx_uid_t) NGX_CONF_UNSET_UINT;