diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2006-10-19 09:57:49 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2006-10-19 09:57:49 +0000 |
| commit | 5569faa5e3847a00aa3766332dd71bea442e4428 (patch) | |
| tree | 677f957093f0671605ad9a12c778d2ddbeb7b3be /src/core/nginx.c | |
| parent | a8503de5b34bbe751a1f9d7a9367ff2b0a09abd9 (diff) | |
| download | nginx-5569faa5e3847a00aa3766332dd71bea442e4428.tar.gz nginx-5569faa5e3847a00aa3766332dd71bea442e4428.tar.bz2 | |
split ngx_crc32() to short and long version
Diffstat (limited to 'src/core/nginx.c')
| -rw-r--r-- | src/core/nginx.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; |
