summaryrefslogtreecommitdiff
path: root/src/irc/core/irc-servers-setup.c
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2015-09-26 18:53:10 +0200
committerLemonBoy <thatlemon@gmail.com>2015-09-26 18:53:10 +0200
commit1a2c479bc04cdb6758ca9f1976e235b092cc83fb (patch)
treee5ccc2c7c8b75f89a7b07eb0e1eb184484407342 /src/irc/core/irc-servers-setup.c
parentf247a43b97731cd1d58ec765dd2d10f885ef66dc (diff)
downloadirssi-1a2c479bc04cdb6758ca9f1976e235b092cc83fb.zip
Allow the user to set and modify the SASL parameters
The /NETWORK ADD command now is able to modify the SASL mechanism, the username and the password on a chatnet basis.
Diffstat (limited to 'src/irc/core/irc-servers-setup.c')
-rw-r--r--src/irc/core/irc-servers-setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/irc-servers-setup.c b/src/irc/core/irc-servers-setup.c
index f5e4f8f4..bf1d2ddf 100644
--- a/src/irc/core/irc-servers-setup.c
+++ b/src/irc/core/irc-servers-setup.c
@@ -81,7 +81,7 @@ static void sig_server_setup_fill_chatnet(IRC_SERVER_CONNECT_REC *conn,
if (ircnet->max_query_chans > 0)
conn->max_query_chans = ircnet->max_query_chans;
- /* Validate the SASL parameters filled by sig_chatnet_read() */
+ /* Validate the SASL parameters filled by sig_chatnet_read() or cmd_network_add */
conn->sasl_mechanism = SASL_MECHANISM_NONE;
if (ircnet->sasl_mechanism != NULL) {