1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-13 05:03:45 -04:00

Merge pull request #1058 from ailin-nemui/sasl-reconnect

copy sasl username and password values
This commit is contained in:
ailin-nemui 2019-06-28 11:28:30 +02:00 committed by GitHub
commit d23b0d22cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -75,6 +75,8 @@ static void destroy_server_connect(SERVER_CONNECT_REC *conn)
g_free_not_null(ircconn->usermode); g_free_not_null(ircconn->usermode);
g_free_not_null(ircconn->alternate_nick); g_free_not_null(ircconn->alternate_nick);
g_free_not_null(ircconn->sasl_username);
g_free_not_null(ircconn->sasl_password);
} }
void irc_core_init(void) void irc_core_init(void)

View File

@ -49,8 +49,8 @@ static void sig_server_connect_copy(SERVER_CONNECT_REC **dest,
rec->usermode = g_strdup(src->usermode); rec->usermode = g_strdup(src->usermode);
rec->alternate_nick = g_strdup(src->alternate_nick); rec->alternate_nick = g_strdup(src->alternate_nick);
rec->sasl_mechanism = src->sasl_mechanism; rec->sasl_mechanism = src->sasl_mechanism;
rec->sasl_username = src->sasl_username; rec->sasl_username = g_strdup(src->sasl_username);
rec->sasl_password = src->sasl_password; rec->sasl_password = g_strdup(src->sasl_password);
*dest = (SERVER_CONNECT_REC *) rec; *dest = (SERVER_CONNECT_REC *) rec;
} }

View File

@ -101,8 +101,8 @@ static void sig_server_setup_fill_chatnet(IRC_SERVER_CONNECT_REC *conn,
conn->sasl_mechanism = SASL_MECHANISM_PLAIN; conn->sasl_mechanism = SASL_MECHANISM_PLAIN;
if (ircnet->sasl_username != NULL && *ircnet->sasl_username && if (ircnet->sasl_username != NULL && *ircnet->sasl_username &&
ircnet->sasl_password != NULL && *ircnet->sasl_password) { ircnet->sasl_password != NULL && *ircnet->sasl_password) {
conn->sasl_username = ircnet->sasl_username; conn->sasl_username = g_strdup(ircnet->sasl_username);
conn->sasl_password = ircnet->sasl_password; conn->sasl_password = g_strdup(ircnet->sasl_password);
} else } else
g_warning("The fields sasl_username and sasl_password are either missing or empty"); g_warning("The fields sasl_username and sasl_password are either missing or empty");
} }