From e31e90b3e10ca2afafccae9a57910133d93b2d37 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 19 May 2005 13:25:22 +0000 Subject: nginx-0.1.32-RELEASE import *) 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. --- src/event/ngx_event_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/event/ngx_event_timer.c') 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, -- cgit