mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 23:52:22 +02:00
copy sasl username and password values
This commit is contained in:
parent
0ffc515264
commit
5a67b983dc
3 changed files with 6 additions and 4 deletions
|
|
@ -49,8 +49,8 @@ static void sig_server_connect_copy(SERVER_CONNECT_REC **dest,
|
|||
rec->usermode = g_strdup(src->usermode);
|
||||
rec->alternate_nick = g_strdup(src->alternate_nick);
|
||||
rec->sasl_mechanism = src->sasl_mechanism;
|
||||
rec->sasl_username = src->sasl_username;
|
||||
rec->sasl_password = src->sasl_password;
|
||||
rec->sasl_username = g_strdup(src->sasl_username);
|
||||
rec->sasl_password = g_strdup(src->sasl_password);
|
||||
*dest = (SERVER_CONNECT_REC *) rec;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue