mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
remove redundant check
This commit is contained in:
parent
c9ce0c521a
commit
3167ccfbc2
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ static void handle_client_connect_cmd(CLIENT_REC *client,
|
|||
client->proxy_address = g_strdup_printf("%*s.proxy", (int)(tag_end - args), args);
|
||||
}
|
||||
|
||||
if (password && g_strcmp0(password, args_pass) != 0) {
|
||||
if (g_strcmp0(password, args_pass) != 0) {
|
||||
/* wrong password! */
|
||||
remove_client(client);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue