diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
commit | 6253ca1b62c24bbac8c380d4ae64353b671ad7ef (patch) | |
tree | cccc0130b6fb065ff235750d23b817e890bd5e57 /src/core/nginx.c | |
parent | 187fcd82410e0f9022b0090a27b040eb1211c3f5 (diff) | |
download | nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.tar.gz nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.zip |
nginx-0.0.1-2003-05-27-16:18:54 import
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r-- | src/core/nginx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index 70ff149cf..c2fdc87ba 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -87,7 +87,7 @@ int main(int argc, char *const *argv) conf.ctx = ngx_conf_ctx; conf.pool = ngx_pool; conf.log = &ngx_log; - conf.module_type = NGX_CORE_MODULE_TYPE; + conf.module_type = NGX_CORE_MODULE; conf.cmd_type = NGX_MAIN_CONF; conf_file.len = sizeof("nginx.conf") - 1; @@ -121,7 +121,7 @@ int main(int argc, char *const *argv) /* STUB */ ngx_worker(&ngx_log); - } + } return 0; } |