Changeset 5c09a59 for commands.c
- Timestamp:
- 2005-11-15T23:16:39Z (19 years ago)
- Branches:
- master
- Children:
- ef6c6a7
- Parents:
- 9cb9868
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r9cb9868 r5c09a59 337 337 else 338 338 { 339 irc_usermsg( irc, "Unknown command: account %s. Please use help commandsto 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] ); 340 340 } 341 341 … … 738 738 739 739 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 ); 741 744 742 745 return( 0 );
Note: See TracChangeset
for help on using the changeset viewer.