summaryrefslogtreecommitdiff
path: root/src/plugins/irc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-01-30 09:24:34 +0100
committerSébastien Helleu <flashcode@flashtux.org>2021-01-30 09:24:34 +0100
commit293402143b9da9e6107fa5d8b28385609060d3ea (patch)
treee9555ca984fa0f2f6962727afeb6d979fdd89200 /src/plugins/irc
parente74dd22707df94a187a40433ff533e99e2d9c77c (diff)
downloadweechat-293402143b9da9e6107fa5d8b28385609060d3ea.zip
irc: fix name of option "default_chantypes" in list of server options
Diffstat (limited to 'src/plugins/irc')
-rw-r--r--src/plugins/irc/irc-command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c
index 1f9deab60..bd22b1700 100644
--- a/src/plugins/irc/irc-command.c
+++ b/src/plugins/irc/irc-command.c
@@ -5112,12 +5112,12 @@ irc_command_display_server (struct t_irc_server *server, int with_detail)
weechat_printf (NULL, " charset_message. . . : %s'%s'",
IRC_COLOR_CHAT_VALUE,
weechat_config_string (server->options[IRC_SERVER_OPTION_CHARSET_MESSAGE]));
- /* chantypes */
+ /* default_chantypes */
if (weechat_config_option_is_null (server->options[IRC_SERVER_OPTION_DEFAULT_CHANTYPES]))
- weechat_printf (NULL, " chantypes. . . . . . : ('%s')",
+ weechat_printf (NULL, " default_chantypes. . : ('%s')",
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_DEFAULT_CHANTYPES));
else
- weechat_printf (NULL, " chantypes. . . . . . : %s'%s'",
+ weechat_printf (NULL, " default_chantypes. . : %s'%s'",
IRC_COLOR_CHAT_VALUE,
weechat_config_string (server->options[IRC_SERVER_OPTION_DEFAULT_CHANTYPES]));
}