mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
Channel mode handling changed - there's no more mode_xxx fields in
channel structure, but instead just one mode string field. Also handling half-ops (+h) should work right. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@617 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
7cbd164e75
commit
67cc9af1bd
15 changed files with 351 additions and 232 deletions
|
|
@ -204,7 +204,8 @@ int server_connect(SERVER_REC *server)
|
|||
server->connect_pipe[1]);
|
||||
server->connect_tag =
|
||||
g_input_add(server->connect_pipe[0], G_INPUT_READ,
|
||||
(GInputFunction) server_connect_callback_readpipe, server);
|
||||
(GInputFunction) server_connect_callback_readpipe,
|
||||
server);
|
||||
|
||||
lookup_servers = g_slist_append(lookup_servers, server);
|
||||
|
||||
|
|
@ -278,7 +279,8 @@ SERVER_REC *server_find_ircnet(const char *ircnet)
|
|||
SERVER_REC *server = tmp->data;
|
||||
|
||||
if (server->connrec->ircnet != NULL &&
|
||||
g_strcasecmp(server->connrec->ircnet, ircnet) == 0) return server;
|
||||
g_strcasecmp(server->connrec->ircnet, ircnet) == 0)
|
||||
return server;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue