1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Server reconnection was a bit buggy - it didn't have to wait for the 5

minutes if it connected to some other server in same ircnet..


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@422 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-02 22:22:55 +00:00 committed by cras
parent f1e1907e80
commit 584fa9a034

View File

@ -79,7 +79,6 @@ void server_setup_fill_conn(IRC_SERVER_CONNECT_REC *conn, SETUP_SERVER_REC *sser
{
if (sserver->own_host != NULL)
conn_set_ip(conn, &sserver->own_ip, sserver->own_host);
sserver->last_connect = time(NULL);
if (sserver->ircnet != NULL && conn->ircnet == NULL)
conn->ircnet = g_strdup(sserver->ircnet);
@ -135,6 +134,7 @@ create_addr_conn(const char *address, int port, const char *password,
if (sserver == NULL) return conn;
server_setup_fill_conn(conn, sserver);
sserver->last_connect = time(NULL);
/* fill the rest from IRC network settings */
ircnet = sserver->ircnet == NULL ? NULL : ircnet_find(sserver->ircnet);