comparison src/core/ngx_string.h @ 372:6639b93e81b2 NGINX_0_6_30

nginx 0.6.30 *) Change: now if an "include" directive pattern does not match any file, then nginx does not issue an error. *) Feature: now the time in directives may be specified without spaces, for example, "1h50m". *) Bugfix: memory leaks if the "ssl_verify_client" directive was on. Thanks to Chavelle Vincent. *) Bugfix: the "sub_filter" directive might set text to change into output. *) Bugfix: the "error_page" directive did not take into account arguments in redirected URI. *) Bugfix: now nginx always opens files in binary mode under Cygwin. *) Bugfix: nginx could not be built on OpenBSD; bug appeared in 0.6.15.
author Igor Sysoev <http://sysoev.ru>
date Tue, 29 Apr 2008 00:00:00 +0400
parents b743d290eb3b
children d13234035cad
comparison
equal deleted inserted replaced
371:b6a2a305fdad 372:6639b93e81b2
171 uintptr_t ngx_escape_html(u_char *dst, u_char *src, size_t size); 171 uintptr_t ngx_escape_html(u_char *dst, u_char *src, size_t size);
172 172
173 173
174 174
175 void ngx_sort(void *base, size_t n, size_t size, 175 void ngx_sort(void *base, size_t n, size_t size,
176 int (*cmp)(const void *, const void *)); 176 ngx_int_t (*cmp)(const void *, const void *));
177 #define ngx_qsort qsort 177 #define ngx_qsort qsort
178 178
179 179
180 #define ngx_value_helper(n) #n 180 #define ngx_value_helper(n) #n
181 #define ngx_value(n) ngx_value_helper(n) 181 #define ngx_value(n) ngx_value_helper(n)