diff src/core/nginx.c @ 1694:8c696afe46b3

rename ngx_crc32_init() to ngx_crc32_table_init() ngx_crc32_init(), ngx_crc32_update(), ngx_crc32_final()
author Igor Sysoev <igor@sysoev.ru>
date Fri, 07 Dec 2007 20:19:41 +0000
parents 6e99e8c71bde
children e584e946e198
line wrap: on
line diff
--- 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;
     }