From 39944e1ff2cc3aa14c4c645dcd6bb5930785699a Mon Sep 17 00:00:00 2001 From: Valery Yatsko Date: Tue, 8 Apr 2008 18:09:32 +0400 Subject: [PATCH] rb_lib_loop delay changed from 250 to 0, it really must be set to nil, 'cause there are some additional checks inside libratbox3 --- src/ircd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircd.c b/src/ircd.c index 51f89a14..a19b617f 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -705,7 +705,7 @@ main(int argc, char *argv[]) print_startup(getpid()); - rb_lib_loop(250); + rb_lib_loop(0); return 0; }