diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2005-05-19 13:25:22 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2005-05-19 13:25:22 +0000 |
| commit | e31e90b3e10ca2afafccae9a57910133d93b2d37 (patch) | |
| tree | 7177a8f48a555733b170bfcad4e9e7072ea8c027 /src/event/ngx_event_timer.c | |
| parent | b1a641cafa2ef042035155f68e5f571303853dfc (diff) | |
| download | nginx-release-0.1.32.tar.gz nginx-release-0.1.32.tar.bz2 | |
nginx-0.1.32-RELEASE importrelease-0.1.32
*) Bugfix: the arguments were omitted in the redirects, issued by the
"rewrite" directive; the bug had appeared in 0.1.29.
*) Feature: the "if" directive supports the captures in regular
expressions.
*) Feature: the "set" directive supports the variables and the captures
of regular expressions.
*) Feature: the "X-Accel-Redirect" response header line is supported in
proxy and FastCGI mode.
Diffstat (limited to '')
| -rw-r--r-- | src/event/ngx_event_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/ngx_event_timer.c b/src/event/ngx_event_timer.c index fdec446c4..53bbc5f09 100644 --- a/src/event/ngx_event_timer.c +++ b/src/event/ngx_event_timer.c @@ -121,7 +121,7 @@ ngx_event_expire_timers(ngx_msec_t timer) ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0, "event timer del: %d: %i", - ngx_event_ident(ev->data), ev->rbtree_key); + ngx_event_ident(ev->data), ev->rbtree_key); ngx_rbtree_delete((ngx_rbtree_t **) &ngx_event_timer_rbtree, &ngx_event_timer_sentinel, |
