Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r576d6d7 r5c09a59  
    337337        else
    338338        {
    339                 irc_usermsg( irc, "Unknown command: account %s. Please use help commands to get a list of available commands.", cmd[1] );
     339                irc_usermsg( irc, "Unknown command: account %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[1] );
    340340        }
    341341       
     
    738738       
    739739        for( num = 0; q; q = q->next, num ++ )
    740                 irc_usermsg( irc, "%d, %s", num, q->question );
     740                if( q->gc ) /* Not necessary yet, but it might come later */
     741                        irc_usermsg( irc, "%d, %s(%s): %s", num, proto_name[q->gc->protocol], q->gc->username, q->question );
     742                else
     743                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
    741744       
    742745        return( 0 );
Note: See TracChangeset for help on using the changeset viewer.