From 574b2324275d3292e98a8e329f791eb5c799f7f2 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Tue, 28 Nov 2017 17:06:10 +0100 Subject: Timers: Fix TBF and some last remains --- conf/conf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'conf/conf.c') diff --git a/conf/conf.c b/conf/conf.c index 2b5e9c71..c68ded7f 100644 --- a/conf/conf.c +++ b/conf/conf.c @@ -384,7 +384,7 @@ config_confirm(void) if (config_timer->expires == 0) return CONF_NOTHING; - tm_stop(config_timer); + tm2_stop(config_timer); return CONF_CONFIRM; } @@ -420,7 +420,7 @@ config_undo(void) return CONF_NOTHING; undo_available = 0; - tm_stop(config_timer); + tm2_stop(config_timer); if (configuring) { @@ -468,7 +468,7 @@ config_init(void) config_event = ev_new(&root_pool); config_event->hook = config_done; - config_timer = tm_new(&root_pool); + config_timer = tm2_new(&root_pool); config_timer->hook = config_timeout; } -- cgit v1.2.3