diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-07-29 14:41:34 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-07-29 14:41:34 +0000 |
commit | a089857143b4879c7a12d6be7c030b7dfc6dcb8d (patch) | |
tree | 5c0f9c2bde1b4adc1f15a62c6e086a96303e47d6 /src/http/modules/ngx_http_autoindex_module.c | |
parent | 4c756c46cdf5879673d364bb07157c9c622c3fac (diff) | |
download | nginx-a089857143b4879c7a12d6be7c030b7dfc6dcb8d.tar.gz nginx-a089857143b4879c7a12d6be7c030b7dfc6dcb8d.zip |
rename ngx_utf_...() to ngx_utf8_...()
Diffstat (limited to 'src/http/modules/ngx_http_autoindex_module.c')
-rw-r--r-- | src/http/modules/ngx_http_autoindex_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/modules/ngx_http_autoindex_module.c b/src/http/modules/ngx_http_autoindex_module.c index 64b29a8b3..86b7c0b30 100644 --- a/src/http/modules/ngx_http_autoindex_module.c +++ b/src/http/modules/ngx_http_autoindex_module.c @@ -329,7 +329,7 @@ ngx_http_autoindex_handler(ngx_http_request_t *r) NGX_ESCAPE_HTML); if (r->utf8) { - entry->utf_len = ngx_utf_length(entry->name.data, entry->name.len); + entry->utf_len = ngx_utf8_length(entry->name.data, entry->name.len); } else { entry->utf_len = len; } @@ -420,8 +420,8 @@ ngx_http_autoindex_handler(ngx_http_request_t *r) utf_len = NGX_HTTP_AUTOINDEX_NAME_LEN + 1; } - b->last = ngx_utf_cpystrn(b->last, entry[i].name.data, - utf_len, entry[i].name.len + 1); + b->last = ngx_utf8_cpystrn(b->last, entry[i].name.data, + utf_len, entry[i].name.len + 1); last = b->last; } else { |