diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-11-19 16:24:46 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-11-19 16:24:46 +0100 |
commit | 9c8ae507985a29b41a22cf30b803141e9ba82a9b (patch) | |
tree | e8e96ff2e33512018e7838dfa58983c45a7e0062 /commands.c | |
parent | cc9079ee091707aba3d5b0580a6191eb4541cbec (diff) | |
parent | 2cdd8ce76ce334327c84516ff78f3b00bef5bebf (diff) |
Merge Wilmer
Diffstat (limited to 'commands.c')
-rw-r--r-- | commands.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -325,7 +325,7 @@ int cmd_account( irc_t *irc, char **cmd ) } else { - irc_usermsg( irc, "Unknown command: account %s. Please use help commands to get a list of available commands.", cmd[1] ); + irc_usermsg( irc, "Unknown command: account %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[1] ); } return( 1 ); @@ -726,7 +726,10 @@ int cmd_qlist( irc_t *irc, char **cmd ) irc_usermsg( irc, "Pending queries:" ); for( num = 0; q; q = q->next, num ++ ) - irc_usermsg( irc, "%d, %s", num, q->question ); + if( q->gc ) /* Not necessary yet, but it might come later */ + irc_usermsg( irc, "%d, %s(%s): %s", num, q->gc->prpl->name, q->gc->username, q->question ); + else + irc_usermsg( irc, "%d, BitlBee: %s", num, q->question ); return( 0 ); } |