diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-06-01 21:29:55 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-06-01 21:29:55 +0200 |
commit | f8872c415b292111515f1a62d1dda5b6eb687f1c (patch) | |
tree | 64dcc5981f741b38c4b65e210c1b0ea20a9b08eb /src | |
parent | 8c57e8abd3474a23d8117ef38160b486e9a49538 (diff) | |
download | weechat-f8872c415b292111515f1a62d1dda5b6eb687f1c.zip |
doc: add IRC SASL SCRAM mechanisms in user's guide (issue #1628)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index cba9ae2a1..3ad0ed8a6 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -1860,11 +1860,11 @@ irc_config_server_new_option (struct t_config_file *config_file, N_("mechanism for SASL authentication: " "\"plain\" for plain text password, " "\"scram-sha-1\" for SCRAM authentication with SHA-1 " - "algorithm, " + "digest algorithm, " "\"scram-sha-256\" for SCRAM authentication with SHA-256 " - "algorithm, " + "digest algorithm, " "\"scram-sha-512\" for SCRAM authentication with SHA-512 " - "algorithm, " + "digest algorithm, " "\"ecdsa-nist256p-challenge\" for key-based " "challenge authentication, " "\"external\" for authentication using client side SSL " |