diff options
author | Igor Sysoev <igor@sysoev.ru> | 2002-09-02 14:48:24 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2002-09-02 14:48:24 +0000 |
commit | a58e3ca14300fce97b2124233afe140c8d59199f (patch) | |
tree | d24eff379cc7dfb5c6952f1bb15735cd63ba2179 /src/core/nginx.c | |
parent | 016b85270268989d769bade2004a7c628a47d726 (diff) | |
download | nginx-a58e3ca14300fce97b2124233afe140c8d59199f.tar.gz nginx-a58e3ca14300fce97b2124233afe140c8d59199f.zip |
nginx-0.0.1-2002-09-02-18:48:24 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 748b44314..b2f3f5fba 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -36,8 +36,6 @@ ngx_array_t *ngx_listening_sockets; int main(int argc, char *const *argv) { - int i; - /* STUB */ ngx_log.log_level = NGX_LOG_DEBUG; @@ -68,6 +66,8 @@ int main(int argc, char *const *argv) /* STUB */ ngx_worker(&ngx_log); + + return 0; } static void ngx_open_listening_sockets(ngx_log_t *log) |