diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-07-25 14:29:05 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-07-25 14:29:05 +0000 |
commit | 96eaa05fd2523995f95d7410d5d8a48f76e5bca1 (patch) | |
tree | d7e9e08cedf59151e6d91d6e69a8857b408e7090 /src/core/ngx_string.h | |
parent | 6df67879a0a020262e514dace0c0349742800cd1 (diff) | |
download | nginx-96eaa05fd2523995f95d7410d5d8a48f76e5bca1.tar.gz nginx-96eaa05fd2523995f95d7410d5d8a48f76e5bca1.zip |
fix utf-8 names in autoindex
Diffstat (limited to 'src/core/ngx_string.h')
-rw-r--r-- | src/core/ngx_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 3514e52f3..895925b6d 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h @@ -153,7 +153,7 @@ ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src); uint32_t ngx_utf_decode(u_char **p, size_t n); size_t ngx_utf_length(u_char *p, size_t n); -u_char *ngx_utf_cpystrn(u_char *dst, u_char *src, size_t n); +u_char *ngx_utf_cpystrn(u_char *dst, u_char *src, size_t n, size_t len); #define NGX_ESCAPE_URI 0 |