guinness DEFINITELY *IS* good for codaz

This commit is contained in:
nohar 2005-05-23 22:55:04 +00:00
parent a5739325b6
commit 29cea3ef41
1 changed files with 6 additions and 6 deletions

View File

@ -1939,16 +1939,16 @@ void irc_main(connection_t *inc, list_t *ll)
struct link *link;
connection_t *conn;
/* Lauch reconnections */
while ((link = list_remove_first(&reconnectl))) {
conn = irc_server_connect(link);
list_add_last(&connl, conn);
}
/* Compute timeouts for next reconnections and lagouts */
if (timeleft == 0) {
timeleft = 1000;
/* Lauch one reconnection at a time */
if ((link = list_remove_first(&reconnectl))) {
conn = irc_server_connect(link);
list_add_last(&connl, conn);
}
/* log flushs */
if (logflush_timer-- <= 0) {
logflush_timer = conf_log_sync_interval;