diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-24 17:46:59 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-24 17:46:59 +0200 |
commit | 40e6dac45f29a4c2cc64ce55eecef03d0b185bd5 (patch) | |
tree | 72b76011a5dea6281cdd8eb777f6cdf39cd67632 /root_commands.c | |
parent | 7989d40d5b9c8f05b38e7b07ab7e91335e717309 (diff) |
Adding account tags as a way to 100% uniquely identify an account.
protocol(screenname) doesn't do this and is a little bit long. These will
be used for nick_format and XML storage.
Diffstat (limited to 'root_commands.c')
-rw-r--r-- | root_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/root_commands.c b/root_commands.c index ddef9cde..cdddf7f2 100644 --- a/root_commands.c +++ b/root_commands.c @@ -412,7 +412,7 @@ static void cmd_account( irc_t *irc, char **cmd ) else con = ""; - irc_usermsg( irc, "%2d. %s, %s%s", i, a->prpl->name, a->user, con ); + irc_usermsg( irc, "%2d (%s): %s, %s%s", i, a->tag, a->prpl->name, a->user, con ); i ++; } |