Changeset 2cdd8ce for commands.c


Ignore:
Timestamp:
2005-11-19T15:17:03Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
9c8ae50, b20b32f
Parents:
c998255 (diff), 94281ef (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge Wilmer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    rc998255 r2cdd8ce  
    326326        else
    327327        {
    328                 irc_usermsg( irc, "Unknown command: account %s. Please use help commands to get a list of available commands.", cmd[1] );
     328                irc_usermsg( irc, "Unknown command: account %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[1] );
    329329        }
    330330       
     
    727727       
    728728        for( num = 0; q; q = q->next, num ++ )
    729                 irc_usermsg( irc, "%d, %s", num, q->question );
     729                if( q->gc ) /* Not necessary yet, but it might come later */
     730                        irc_usermsg( irc, "%d, %s(%s): %s", num, q->gc->prpl->name, q->gc->username, q->question );
     731                else
     732                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
    730733       
    731734        return( 0 );
Note: See TracChangeset for help on using the changeset viewer.