mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 23:52:22 +02:00
/UPGRADE was broken, changed again the server connection code.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2821 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
09505d628c
commit
4aa0b9111e
11 changed files with 59 additions and 50 deletions
|
|
@ -118,7 +118,7 @@ static void cmd_connect(const char *data)
|
|||
|
||||
conn = get_server_connect(data, NULL, &rawlog_file);
|
||||
if (conn != NULL) {
|
||||
server = CHAT_PROTOCOL(conn)->server_connect(conn);
|
||||
server = server_connect(conn);
|
||||
server_connect_unref(conn);
|
||||
|
||||
if (server != NULL && rawlog_file != NULL)
|
||||
|
|
@ -224,7 +224,7 @@ static void cmd_server_connect(const char *data, SERVER_REC *server)
|
|||
if (conn != NULL) {
|
||||
if (!plus_addr)
|
||||
update_reconnection(conn, server);
|
||||
server = CHAT_PROTOCOL(conn)->server_connect(conn);
|
||||
server = server_connect(conn);
|
||||
server_connect_unref(conn);
|
||||
|
||||
if (server != NULL && rawlog_file != NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue