From 5569faa5e3847a00aa3766332dd71bea442e4428 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 19 Oct 2006 09:57:49 +0000 Subject: split ngx_crc32() to short and long version --- src/core/nginx.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/nginx.c') diff --git a/src/core/nginx.c b/src/core/nginx.c index 22a4d290b..0449241cb 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -256,6 +256,10 @@ main(int argc, char *const *argv) return 1; } + if (ngx_crc32_init(init_cycle.pool) != NGX_OK) { + return 1; + } + environ = &ngx_null_environ; ngx_max_module = 0; -- cgit