diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-20 10:28:05 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-20 10:28:05 +0100 |
commit | f26fbb4850152e800530d8c6df35835681362ae4 (patch) | |
tree | de0cdef4fc765367772f5aa758362a38cf648816 /src/plugins | |
parent | fb8799e81c0da4af598cd83e379b4f1fd69de8c0 (diff) | |
download | weechat-f26fbb4850152e800530d8c6df35835681362ae4.zip |
irc: add missing field realname in function irc_nick_print_log()
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/irc/irc-nick.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/irc/irc-nick.c b/src/plugins/irc/irc-nick.c index e384b57b0..2c437b055 100644 --- a/src/plugins/irc/irc-nick.c +++ b/src/plugins/irc/irc-nick.c @@ -1208,6 +1208,7 @@ irc_nick_print_log (struct t_irc_nick *nick) weechat_log_printf (" prefix . . . . : '%s'", nick->prefix); weechat_log_printf (" away . . . . . : %d", nick->away); weechat_log_printf (" account. . . . : '%s'", nick->account); + weechat_log_printf (" realname . . . : '%s'", nick->realname); weechat_log_printf (" color. . . . . : '%s'", nick->color); weechat_log_printf (" prev_nick. . . : 0x%lx", nick->prev_nick); weechat_log_printf (" next_nick. . . : 0x%lx", nick->next_nick); |