Changes in irc_commands.c [63770b4:b75acf6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_commands.c
r63770b4 rb75acf6 448 448 user_t *u = user_find( irc, irc->nick ); 449 449 char *away = cmd[1]; 450 account_t *a; 450 451 451 452 if( !u ) return; … … 474 475 } 475 476 476 set_setstr( &irc->set, "away", u->away ); 477 for( a = irc->accounts; a; a = a->next ) 478 { 479 struct im_connection *ic = a->ic; 480 481 if( ic && ic->flags & OPT_LOGGED_IN ) 482 imc_set_away( ic, u->away ); 483 } 477 484 } 478 485
Note: See TracChangeset
for help on using the changeset viewer.