diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-09-19 10:55:57 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-09-19 10:55:57 +0200 |
commit | 44511f38a4e5ca8171fe8c9a6f96580556d0ac1b (patch) | |
tree | eeb8934ebdd4ed7f8e8aa350e7bf6e7ce4091ca2 /src | |
parent | e50534b1c3bc6fa64ae38ca9fa8686590c497631 (diff) | |
download | weechat-44511f38a4e5ca8171fe8c9a6f96580556d0ac1b.zip |
Add missing brackets around nick for IRC message 314 (reply to whowas) (patch #6915)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index a32d92ea1..67863bc4f 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -2029,8 +2029,9 @@ irc_protocol_cmd_314 (struct t_irc_server *server, const char *command, weechat_printf_tags (server->buffer, irc_protocol_tags (command, "irc_numeric"), - _("%s%s%s %s(%s%s@%s%s)%s was %s"), + _("%s%s[%s%s%s] (%s%s@%s%s)%s was %s"), weechat_prefix ("network"), + IRC_COLOR_CHAT_DELIMITERS, IRC_COLOR_CHAT_NICK, argv[3], IRC_COLOR_CHAT_DELIMITERS, |