Changeset 5c09a59 for commands.c


Ignore:
Timestamp:
2005-11-15T23:16:39Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
ef6c6a7
Parents:
9cb9868
Message:

Got rid of raw B's in source,
Replaced most irc_usermsg() calls in nogaim.c with serv_got_crap(),
Slightly clearer handling of buddy add requests.

Thanks to timing for the patch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r9cb9868 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.