aboutsummaryrefslogtreecommitdiff
path: root/src/core/nginx.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-12-07 20:19:41 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-12-07 20:19:41 +0000
commitac7586e9520861a78146afe387c981d6be9b4d7b (patch)
treea1ebc66ab56ed98505ed962109d1c19d0bfe7519 /src/core/nginx.c
parent27dd6a62bd76983e6bdc5c45e108aae816fac761 (diff)
downloadnginx-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.c6
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;
}