Changeset 2cdd8ce for commands.c
- Timestamp:
- 2005-11-19T15:17:03Z (19 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
rc998255 r2cdd8ce 326 326 else 327 327 { 328 irc_usermsg( irc, "Unknown command: account %s. Please use help commandsto 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] ); 329 329 } 330 330 … … 727 727 728 728 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 ); 730 733 731 734 return( 0 );
Note: See TracChangeset
for help on using the changeset viewer.