mirror of
https://github.com/irssi/irssi.git
synced 2026-08-21 09:32:32 +02:00
fix formatting
This commit is contained in:
parent
4650665ee4
commit
88e2449f83
1 changed files with 35 additions and 35 deletions
|
|
@ -176,9 +176,9 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||
client->want_ctcp = 1;
|
||||
for (tmp = proxy_clients; tmp != NULL; tmp = tmp->next) {
|
||||
CLIENT_REC *rec = tmp->data;
|
||||
if ((g_ascii_strcasecmp(client->listen->ircnet,rec->listen->ircnet) == 0) &&
|
||||
if (g_ascii_strcasecmp(client->listen->ircnet, rec->listen->ircnet) == 0 &&
|
||||
/* kludgy way to check if the clients aren't the same */
|
||||
(client->recv_tag != rec->recv_tag)) {
|
||||
client->recv_tag != rec->recv_tag) {
|
||||
if (rec->want_ctcp == 1)
|
||||
proxy_outdata(rec, ":%s NOTICE %s :Another client is now receiving CTCPs sent to %s\r\n",
|
||||
rec->proxy_address, rec->nick, rec->listen->ircnet);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue