1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

irc: fix name of option "default_chantypes" in list of server options

This commit is contained in:
Sébastien Helleu
2021-01-30 09:24:34 +01:00
parent e74dd22707
commit 293402143b
+3 -3
View File
@@ -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]));
}