From ac7586e9520861a78146afe387c981d6be9b4d7b Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 7 Dec 2007 20:19:41 +0000 Subject: rename ngx_crc32_init() to ngx_crc32_table_init() ngx_crc32_init(), ngx_crc32_update(), ngx_crc32_final() --- src/core/nginx.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/core/nginx.c') 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; } -- cgit