- Timestamp:
- 2010-07-25T09:11:48Z (15 years ago)
- Branches:
- master
- Children:
- c6bf805
- Parents:
- 5588edf5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r5588edf5 r51a3d12 288 288 irc_user_t *iu = (irc_user_t *) bu->ui_data; 289 289 irc_t *irc = (irc_t *) bee->ui_data; 290 bee_user_flags_t online; 291 292 /* Take the user offline temporarily so we can change the nick (if necessary). */ 293 if( ( online = bu->flags & BEE_USER_ONLINE ) ) 294 bu->flags &= ~BEE_USER_ONLINE; 290 295 291 296 bee_irc_channel_update( irc, NULL, iu ); 292 297 bee_irc_user_nick_update( iu ); 298 299 if( online ) 300 { 301 bu->flags |= online; 302 bee_irc_channel_update( irc, NULL, iu ); 303 } 293 304 294 305 return TRUE;
Note: See TracChangeset
for help on using the changeset viewer.