diff options
author | Igor Sysoev <igor@sysoev.ru> | 2005-12-05 13:15:03 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2005-12-05 13:15:03 +0000 |
commit | fe8aea1c269aa447b4b7af354f930523109fdccd (patch) | |
tree | 8014c454cffc4d954525547ce0ced027dcbb98c3 /src/core/ngx_rbtree.h | |
parent | 185275f41cc1032577af0f4a21ea6d4c85650a1a (diff) | |
download | nginx-fe8aea1c269aa447b4b7af354f930523109fdccd.tar.gz |
Changes with nginx 0.3.13 05 Dec 2005v0.3.13
*) Feature: the IMAP/POP3 proxy supports STARTTLS and STLS.
*) Bugfix: the IMAP/POP3 proxy did not work with the select, poll, and
/dev/poll methods.
*) Bugfix: in SSI handling.
*) Bugfix: now Solaris sendfilev() is not used to transfer the client
request body to FastCGI-server via the unix domain socket.
*) Bugfix: the "auth_basic" directive did not disable the
authorization; bug appeared in 0.3.11.
Diffstat (limited to 'src/core/ngx_rbtree.h')
-rw-r--r-- | src/core/ngx_rbtree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_rbtree.h b/src/core/ngx_rbtree.h index 1b1322d3c..a57ec778d 100644 --- a/src/core/ngx_rbtree.h +++ b/src/core/ngx_rbtree.h @@ -29,7 +29,7 @@ struct ngx_rbtree_node_s { typedef struct ngx_rbtree_s ngx_rbtree_t; -typedef ngx_rbtree_t *(*ngx_rbtree_insert_pt) (ngx_rbtree_node_t *root, +typedef ngx_rbtree_node_t *(*ngx_rbtree_insert_pt) (ngx_rbtree_node_t *root, ngx_rbtree_node_t *node, ngx_rbtree_node_t *sentinel); struct ngx_rbtree_s { |