diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-07 20:19:41 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-07 20:19:41 +0000 |
commit | ac7586e9520861a78146afe387c981d6be9b4d7b (patch) | |
tree | a1ebc66ab56ed98505ed962109d1c19d0bfe7519 /src/core/nginx.c | |
parent | 27dd6a62bd76983e6bdc5c45e108aae816fac761 (diff) | |
download | nginx-ac7586e9520861a78146afe387c981d6be9b4d7b.tar.gz nginx-ac7586e9520861a78146afe387c981d6be9b4d7b.zip |
rename ngx_crc32_init() to ngx_crc32_table_init()
ngx_crc32_init(), ngx_crc32_update(), ngx_crc32_final()
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r-- | src/core/nginx.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index 579ee161b..ae68605ef 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -273,9 +273,11 @@ main(int argc, char *const *argv) return 1; } - /* ngx_crc32_init() requires ngx_cacheline_size set in ngx_os_init() */ + /* + * ngx_crc32_table_init() requires ngx_cacheline_size set in ngx_os_init() + */ - if (ngx_crc32_init() != NGX_OK) { + if (ngx_crc32_table_init() != NGX_OK) { return 1; } |