aboutsummaryrefslogtreecommitdiffstats
path: root/root_commands.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-15 15:39:35 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-15 15:39:35 -0700
commitc2fb38096ea4e75a680e57e103d4a4986aa84c75 (patch)
treed0a8fd0a602867dd6dc406bdc8206fa049ba757e /root_commands.c
parentcd4723c257f9f7bd8d4a46c6562f93c2aefc3dbb (diff)
Cleaned up struct im_connection. No more username/password stuff since
it's in acc too. wants_to_die is now an argument to imc_logout().
Diffstat (limited to 'root_commands.c')
-rw-r--r--root_commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/root_commands.c b/root_commands.c
index ee6df91d..0b3d6844 100644
--- a/root_commands.c
+++ b/root_commands.c
@@ -879,7 +879,7 @@ static void cmd_qlist( irc_t *irc, char **cmd )
for( num = 0; q; q = q->next, num ++ )
if( q->ic ) /* Not necessary yet, but it might come later */
- irc_usermsg( irc, "%d, %s(%s): %s", num, q->ic->acc->prpl->name, q->ic->username, q->question );
+ irc_usermsg( irc, "%d, %s(%s): %s", num, q->ic->acc->prpl->name, q->ic->acc->user, q->question );
else
irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
}