mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Merge pull request #428 from mauke/irssiproxy-multiplex-2
fix proxy server name
This commit is contained in:
commit
843e0c0884
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ static void handle_client_connect_cmd(CLIENT_REC *client,
|
|||
|
||||
client->server = server;
|
||||
g_free(client->proxy_address);
|
||||
client->proxy_address = g_strdup_printf("%*s.proxy", (int)(tag_end - args), args);
|
||||
client->proxy_address = g_strdup_printf("%.*s.proxy", (int)(tag_end - args), args);
|
||||
}
|
||||
|
||||
if (g_strcmp0(password, args_pass) != 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue