From 9b2fe0ba77445bda6ef17c4ab687755f78054fae 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 51f89a1..a19b617 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; }