If we couldn't connect to any of our uplinks, wait for 5 minutes and

try again.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@240 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-05-25 14:34:40 +00:00 committed by cras
commit c39c27a1ff
3 changed files with 35 additions and 15 deletions

View file

@ -32,7 +32,7 @@
void botnet_connection_init(void);
void botnet_connection_deinit(void);
static GSList *botnets;
GSList *botnets;
void bot_send_cmd(BOT_REC *bot, char *data)
{
@ -591,7 +591,7 @@ static void autoconnect_botnets(void)
BOTNET_REC *rec = tmp->data;
if (rec->autoconnect)
botnet_connect(rec->name);
botnet_connect(rec);
}
}